mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
This fixes the tests.
This commit is contained in:
parent
0c8a1682b6
commit
69c5c93353
@ -50,6 +50,13 @@ class ConfigurationControllerTest extends TestCase
|
||||
FireflyConfig::shouldReceive('get')->withArgs(['must_confirm_account', false])->once()->andReturn($falseConfig);
|
||||
FireflyConfig::shouldReceive('get')->withArgs(['is_demo_site', false])->once()->andReturn($falseConfig);
|
||||
|
||||
// new settings:
|
||||
FireflyConfig::shouldReceive('get')->withArgs(['mail_for_lockout', false])->once()->andReturn($falseConfig);
|
||||
FireflyConfig::shouldReceive('get')->withArgs(['mail_for_blocked_domain', false])->once()->andReturn($falseConfig);
|
||||
FireflyConfig::shouldReceive('get')->withArgs(['mail_for_blocked_email', false])->once()->andReturn($falseConfig);
|
||||
FireflyConfig::shouldReceive('get')->withArgs(['mail_for_bad_login', false])->once()->andReturn($falseConfig);
|
||||
FireflyConfig::shouldReceive('get')->withArgs(['mail_for_blocked_login', false])->once()->andReturn($falseConfig);
|
||||
|
||||
$this->call('GET', route('admin.configuration.index'));
|
||||
$this->assertResponseStatus(200);
|
||||
|
||||
@ -66,6 +73,11 @@ class ConfigurationControllerTest extends TestCase
|
||||
FireflyConfig::shouldReceive('set')->withArgs(['single_user_mode', false])->once();
|
||||
FireflyConfig::shouldReceive('set')->withArgs(['must_confirm_account', false])->once();
|
||||
FireflyConfig::shouldReceive('set')->withArgs(['is_demo_site', false])->once();
|
||||
FireflyConfig::shouldReceive('set')->withArgs(['mail_for_lockout', false])->once();
|
||||
FireflyConfig::shouldReceive('set')->withArgs(['mail_for_blocked_domain', false])->once();
|
||||
FireflyConfig::shouldReceive('set')->withArgs(['mail_for_blocked_email', false])->once();
|
||||
FireflyConfig::shouldReceive('set')->withArgs(['mail_for_bad_login', false])->once();
|
||||
FireflyConfig::shouldReceive('set')->withArgs(['mail_for_blocked_login', false])->once();
|
||||
|
||||
$this->be($this->user());
|
||||
$this->call('POST', route('admin.configuration.index.post'));
|
||||
|
Loading…
Reference in New Issue
Block a user