This should fix the tests on the translations branch.

This commit is contained in:
James Cole
2015-05-14 18:15:31 +02:00
parent a82b829da9
commit d3897eece7
6 changed files with 68 additions and 0 deletions

View File

@@ -102,6 +102,12 @@ class HomeControllerTest extends TestCase
$repository->shouldReceive('sumOfEverything')->once()->andReturn(1);
$repository->shouldReceive('getFrontpageTransactions')->once()->andReturn($journals);
// language preference:
$language = FactoryMuffin::create('FireflyIII\Models\Preference');
$language->data = 'en';
$language->save();
Preferences::shouldReceive('get')->withAnyArgs()->andReturn($language);
Amount::shouldReceive('getCurrencyCode')->andReturn('EUR');
Amount::shouldReceive('format')->andReturn('xxx');