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 {
3131 });
3232
3333 $this->specify("username is too long", function() {
34- $user->username = 'toolooooongnaaaaaaameeee',
34+ $this-> user->username = 'toolooooongnaaaaaaameeee',
3535 verify($user->validate(['username'])->false());
3636 });
3737
3838 // alternative, TDD assertions can be used too.
3939 $this->specify("username is ok", function() {
40- $user->username = 'davert',
40+ $this-> user->username = 'davert',
4141 $this->assertTrue($user->validate(['username']));
4242 });
4343 }
@@ -227,7 +227,7 @@ $this->cleanSpecify(); // removes before/after callbacks
227227Install with Composer:
228228
229229
230- ```
230+ ``` json
231231"require-dev" : {
232232 "codeception/specify" : " *" ,
233233 "codeception/verify" : " *"
You can’t perform that action at this time.
0 commit comments