Skip to content

Commit

Permalink
Merge branch '3.5' into 3.6
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed Aug 22, 2018
2 parents dee1559 + a981d06 commit 9577fd6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@

# PHPUnit
/coverage/*
/.phpunit.result.cache
9 changes: 9 additions & 0 deletions tests/Databases/MigrateDatabaseTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,5 +72,14 @@ public function it_runs_the_migrations()

$this->assertEquals('hello@orchestraplatform.com', $users->email);
$this->assertTrue(\Hash::check('123', $users->password));

$columns = \Schema::getColumnListing('testbench_users');
$this->assertEquals([
'id',
'email',
'password',
'created_at',
'updated_at',
], $columns);
}
}

0 comments on commit 9577fd6

Please sign in to comment.