mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-15 20:09:44 +00:00
11 lines
302 B
PHP
11 lines
302 B
PHP
<?php
|
|
|
|
class MediaWikiParserTest extends WikiaBaseTest {
|
|
|
|
public function testAsideTagPWrappedDuringParsing() {
|
|
$aside = "<aside></aside>";
|
|
$result = ( new Parser() )->doBlockLevels( $aside, true );
|
|
//parser adds new line at the end of block
|
|
$this->assertEquals( $aside . "\n", $result );
|
|
}
|
|
} |