docteurklein/funk-spec
a test runner
Maintainers
0.1.3
2017-12-01 15:09 UTC
Requires
- php: >=5.4
- behat/behat: ~3.0
Requires (Dev)
- phpspec/phpspec: ~2.0 || ~3.0 || ~4.0
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT 07584a0482a5e127bdcc52e4b4ac5eb5071de67d
- Klein Florian <florian.klein.woop@free.fr>
This package is not auto-updated.
Last update: 2026-06-20 23:46:23 UTC
README
What ?
A functional/system/integration test framework based on Behat/Testwork.
Why ?
User acceptance tests shouldn't include technical details,
but it doesn't mean some technical parts of the app shouldn't be independantly tested.
Moreover, some intermediate modules could be tested, standing between unit and system testing.
How ?
composer require docteurklein/funk-spec --dev
vim funk/Feature/That/DoesStuff/ProfitsTo/Customer.php vendor/bin/funk funk
<?php namespace funk\Feature\That\DoesStuff\ProfitsTo; use Funk\Spec; class Customer implements Spec { function it_simplifies_customers_life() { // pic or it didn't happen! } }
