Outthentic - yet another test framework
Outthentic is a black box testing framework.
Instead of hack into objects and methods it deals with text appeared in stdout.
This is very first CPAN release to play with:
$ cpanm Outthentic
This is super fast intro:
# Create a story file:
# Story is just an any perl script that yields something into stdout.$ nano story.pl
print "I am OK\n";
print "I am outthentic\n";
# Create a story check:$ nano story.check
I am OK
I am outthentic# run a story runner and enjoy your test results:
$ strun
Follow GitHub pages for documentation
Leave a comment