Skip to content

Commit

Permalink
Failing test to prove there's a problem
Browse files Browse the repository at this point in the history
  • Loading branch information
johanmeiring committed Jan 30, 2017
1 parent 7cc6d5a commit a4c9341
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/TestCase/Validation/ValidationTest.php
Expand Up @@ -83,6 +83,8 @@ public function testNotBlank()
$this->assertTrue(Validation::notBlank('π'));
$this->assertTrue(Validation::notBlank('0'));
$this->assertTrue(Validation::notBlank(0));
$this->assertTrue(Validation::notBlank(0.0));
$this->assertTrue(Validation::notBlank('0.0'));
$this->assertFalse(Validation::notBlank("\t "));
$this->assertFalse(Validation::notBlank(""));
}
Expand Down

0 comments on commit a4c9341

Please sign in to comment.