## PerlSpec ##
### DEVELOPMENT ###
install `YAML`, `Test::More`, and `version`
```
$ cpan -i YAML
$ cpan -i Test::More
$ cpan -i version
```
### PRODUCTION ###
install `PerlSpec` through CPAN, add to your project and `use`.
```
$ cpan -i PerlSpec
```
```
use PerlSpec 'no_plan';
describe 'PerlSpec' => sub {
it 'makes testing Perl awesome!' => sub {
ok($testing_perl eq 'awesome', '');
};
};
```
For a more detailed example, see [bowling-perl](
https://github.com/bostonaholic/bowling-perl)
Special thanks to Dustin Williams for writing the initial version as `Behaviour`.