App-PerlCalc
view release on metacpan or search on metacpan
# Copyright (c) 2009 David Caldwell, All Rights Reserved. -*- cperl -*-
use Test::More tests => 2;
use Test::Script::Run;
# Test::Script::Run wants the exes in bin/ or t/bin/
mkdir 't/bin';
symlink '../../pc', 't/bin/pc';
run_ok('pc', ["1+3"], 'pc runs ok');
run_not_ok('pc', ["david rules"], 'pc detects syntax errors');
( run in 0.323 second using v1.01-cache-2.11-cpan-cc502c75498 )