Skip to content

Commit

Permalink
Tests and assertions enhancement
Browse files Browse the repository at this point in the history
  • Loading branch information
peter279k authored and filips123 committed Nov 17, 2018
1 parent cb53169 commit 94666ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"issues": "https://github.com/filips123/ConfigWriter/issues/",
"source": "https://github.com/filips123/ConfigWriter/",
"docs": "https://github.com/filips123/ConfigWriter/wiki/"

},
"minimum-stability": "RC",
"prefer-stable": true,
Expand Down
4 changes: 2 additions & 2 deletions tests/AbstractConfigTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ public function testOffsetGet()
*/
public function testOffsetExists()
{
$this->assertTrue(isset($this->config['database']['host']));
$this->assertFalse(isset($this->config['user']['password']));
$this->assertNotEmpty($this->config['database']['host']);
$this->assertEmpty($this->config['user']['password']);
}

/**
Expand Down

0 comments on commit 94666ab

Please sign in to comment.