Skip to content

Commit 3fc6f0e

Browse files
committed
improved readme and robofile
1 parent d3721cf commit 3fc6f0e

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ Use in any test `verify` function instead of `$this->assert*` methods.
8484

8585
## Extending
8686

87-
`Codeception\Verify` class can be extended with custom assertions. You write your own`verify` function that would instantiate your extended version of Verify class.
87+
`Codeception\Verify` class can be extended with custom assertions. You write your own `verify` function that would instantiate your extended version of Verify class.
88+
89+
```php
90+
function verify(
91+
```
8892

8993
**License: MIT**

RoboFile.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ public function release($newVer = null)
2424
->push('origin','master --tags')
2525
->run();
2626

27-
$this->taskGitHubRelease($newVer)
27+
$this->taskGitHubRelease($version)
28+
->uri('Codeception/Verify')
29+
->askForChanges()
2830
->run();
2931
}
3032
}

0 commit comments

Comments
 (0)