Add Ignored to the return values from the mocked filesystem

This commit is contained in:
pataar
2020-03-10 11:14:45 +01:00
parent 3e4e5d6327
commit 7398051123
@@ -32,6 +32,7 @@ class Test extends AbstractModelsCommand
$mockFilesystem = Mockery::mock(Filesystem::class);
$mockFilesystem
->shouldReceive('get')
->andReturn(file_get_contents(__DIR__ . '/Models/Ignored.php'))
->andReturn(file_get_contents(__DIR__ . '/Models/NotIgnored.php'))
->once();
$mockFilesystem