diff options
Diffstat (limited to 'tests/Updater/UpdaterTest.php')
-rw-r--r-- | tests/Updater/UpdaterTest.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/Updater/UpdaterTest.php b/tests/Updater/UpdaterTest.php index 94e3c7d3..8b90fd5e 100644 --- a/tests/Updater/UpdaterTest.php +++ b/tests/Updater/UpdaterTest.php | |||
@@ -684,4 +684,19 @@ $GLOBALS[\'privateLinkByDefault\'] = true;'; | |||
684 | $this->assertEquals(4194304, $this->conf->get('general.download_max_size')); | 684 | $this->assertEquals(4194304, $this->conf->get('general.download_max_size')); |
685 | $this->assertEquals(3, $this->conf->get('general.download_timeout')); | 685 | $this->assertEquals(3, $this->conf->get('general.download_timeout')); |
686 | } | 686 | } |
687 | |||
688 | /** | ||
689 | * Test updateMethodAtomDefault with show_atom set to true. | ||
690 | * => nothing to do | ||
691 | */ | ||
692 | public function testUpdateMethodWebThumbnailerEnabled() | ||
693 | { | ||
694 | $this->conf->set('thumbnail.enable_thumbnails', true); | ||
695 | $updater = new Updater([], [], $this->conf, true); | ||
696 | $this->assertTrue($updater->updateMethodWebThumbnailer()); | ||
697 | $this->assertFalse($this->conf->exists('thumbnail')); | ||
698 | $this->assertTrue($this->conf->get('thumbnails.enabled')); | ||
699 | $this->assertEquals(125, $this->conf->get('thumbnails.width')); | ||
700 | $this->assertEquals(90, $this->conf->get('thumbnails.height')); | ||
701 | } | ||
687 | } | 702 | } |