mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 11:06:00 +02:00
phpspec: add page (#3123)
This commit is contained in:
parent
98761e30b6
commit
731c551764
1 changed files with 32 additions and 0 deletions
32
pages/common/phpspec.md
Normal file
32
pages/common/phpspec.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# phpspec
|
||||
|
||||
> A Behaviour Driven Development tool for PHP.
|
||||
> More information: <https://phpspec.net>.
|
||||
|
||||
- Create a specification for a class:
|
||||
|
||||
`phpspec describe {{class_name}}`
|
||||
|
||||
- Run all specifications in the "spec" directory:
|
||||
|
||||
`phpspec run`
|
||||
|
||||
- Run a single specification:
|
||||
|
||||
`phpspec run {{path/to/class_specification_file}}`
|
||||
|
||||
- Run specifications using a specific configuration file:
|
||||
|
||||
`phpspec run -c {{path/to/configuration_file}}`
|
||||
|
||||
- Run specifications using a specific bootstrap file:
|
||||
|
||||
`phpspec run -b {{path/to/bootstrap_file}}`
|
||||
|
||||
- Disable code generation prompts:
|
||||
|
||||
`phpspec run --no-code-generation`
|
||||
|
||||
- Enable fake return values:
|
||||
|
||||
`phpspec run --fake`
|
Loading…
Add table
Reference in a new issue