Skip to content

Commit

Permalink
Does this works?
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Friedman <[email protected]>
  • Loading branch information
iMattPro committed Aug 22, 2023
1 parent de70ef1 commit 46986d7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/functional/acp_module_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ public function test_module_page()
self::assertEquals('0', $crawler->filter('input[name="abbc3_auto_video"][checked]')->attr('value'));
// self::assertEquals('png', $crawler->filter('select[name="abbc3_icons_type"] > option[selected]')->attr('value'));
self::assertEquals('', $crawler->filter('textarea#abbc3_google_fonts')->text());
self::assertEquals('png', $crawler->filter('select[name="abbc3_icons_type"] > option')->reduce(
function ($node, $i)
{
return (bool) $node->attr('selected');
}
)->attr('value'));

// Check the BBCodes module is installed in the ABBC3 module
$this->assertContainsLang('ACP_BBCODES', $crawler->filter("#menu")->text());
Expand Down

0 comments on commit 46986d7

Please sign in to comment.