summaryrefslogtreecommitdiff
path: root/tests/app
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-01-30 12:56:11 +0000
committerGreg Roach <fisharebest@webtrees.net>2019-01-30 12:56:31 +0000
commite11ffd0c922a07c13f23d38c7d9c82edce5298f5 (patch)
tree5d06b65e1281d03de9857dedf2f9b4e7e9c847d5 /tests/app
parent68897a4841f4e5ceaef64dfa5db54f6b411145f9 (diff)
downloadwebtrees-e11ffd0c922a07c13f23d38c7d9c82edce5298f5.tar.gz
webtrees-e11ffd0c922a07c13f23d38c7d9c82edce5298f5.tar.bz2
webtrees-e11ffd0c922a07c13f23d38c7d9c82edce5298f5.zip
Tests
Diffstat (limited to 'tests/app')
-rw-r--r--tests/app/ModuleTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/app/ModuleTest.php b/tests/app/ModuleTest.php
index 649be3c092..bbe694fed6 100644
--- a/tests/app/ModuleTest.php
+++ b/tests/app/ModuleTest.php
@@ -86,10 +86,10 @@ class ModuleTest extends \Fisharebest\Webtrees\TestCase
$this->assertNotEmpty(Module::findByInterface(ModuleReportInterface::class)->all());
$this->assertNotEmpty(Module::findByInterface(ModuleSidebarInterface::class)->all());
$this->assertNotEmpty(Module::findByInterface(ModuleTabInterface::class)->all());
+ $this->assertNotEmpty(Module::findByInterface(ModuleThemeInterface::class)->all());
// THe core modules do not contain any of these.
$this->assertEmpty(Module::findByInterface(ModuleHistoricEventsInterface::class)->all());
- $this->assertEmpty(Module::findByInterface(ModuleThemeInterface::class)->all());
}
/**