https://github.com/punktde/codeception-filesystem
https://github.com/punktde/codeception-filesystem
codeception
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/punktde/codeception-filesystem
- Owner: punktDe
- License: gpl-3.0
- Created: 2019-07-31T12:02:31.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-03-18T12:45:00.000Z (12 months ago)
- Last Synced: 2025-10-25T09:42:54.843Z (5 months ago)
- Topics: codeception
- Language: PHP
- Size: 30.3 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# punktde/codeception-filesystem
## Gherkin Steps and additional module functions for the Codeception Filesystem module
### How to use
#### Extended module
Use the module `PunktDe\Codeception\Filesystem\Module\Filesystem` instead of the default codeception module `filesystem` in your `codeception.yaml`:
```
modules:
enabled:
- PunktDe\Codeception\Filesystem\Module\Filesystem
```
#### Gherkin steps
Just add the trait `PunktDe\Codeception\Filesystem\ActorTraits\Filesystem` to your testing actor. Then you can use `*.feature` files to write your gherkin tests with the new steps.
##### Example actor
```