Skip to content

Commit

Permalink
add the missing part of the reverse test
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeSimonson committed Jan 10, 2016
1 parent 17d7f5c commit e6a2fe9
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,11 @@ public function testSchemaChangeAreNotTakenIntoAccountInPreAndPostMethod()
$this->assertFalse($schema->hasTable('foo'), 'The table foo is present');
$this->assertFalse($schema->hasTable('bar'), 'The table bar is present');
$this->assertFalse($schema->hasTable('bar2'), 'The table bar2 is present');

foreach($queries as $query) {
$this->assertNotContains('bar', $query);
$this->assertNotContains('bar2', $query);
};
}

public function provideTestMigrationNames()
Expand Down

0 comments on commit e6a2fe9

Please sign in to comment.