File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ class UserTest extends PHPUnit_Framework_TestCase {
31
31
});
32
32
33
33
$this->specify("username is too long", function() {
34
- $user->username = 'toolooooongnaaaaaaameeee',
34
+ $this-> user->username = 'toolooooongnaaaaaaameeee',
35
35
verify($user->validate(['username'])->false());
36
36
});
37
37
38
38
// alternative, TDD assertions can be used too.
39
39
$this->specify("username is ok", function() {
40
- $user->username = 'davert',
40
+ $this-> user->username = 'davert',
41
41
$this->assertTrue($user->validate(['username']));
42
42
});
43
43
}
@@ -227,7 +227,7 @@ $this->cleanSpecify(); // removes before/after callbacks
227
227
Install with Composer:
228
228
229
229
230
- ```
230
+ ``` json
231
231
"require-dev" : {
232
232
"codeception/specify" : " *" ,
233
233
"codeception/verify" : " *"
You can’t perform that action at this time.
0 commit comments