Added tests for Base64, Dice, EmToPx, FlipText, GoldenRatio, Guid, Periemeter, Roman, SigFigs, TitleCase, Unicode
2012-04-15 16:17:12 -07:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
use Test::More;
|
|
|
|
use DDG::Test::Goodie;
|
|
|
|
|
|
|
|
zci answer_type => 'dice_roll';
|
|
|
|
zci is_cached => 0;
|
|
|
|
|
|
|
|
ddg_goodie_test(
|
|
|
|
[qw(
|
|
|
|
DDG::Goodie::Dice
|
|
|
|
)],
|
2013-02-11 12:57:56 -08:00
|
|
|
'throw dice' => test_zci(qr/^\d, \d \(random\)$/),
|
|
|
|
"roll 5 dice" => test_zci(qr/\d, \d, \d, \d, \d \(random\)$/),
|
2013-01-27 13:01:27 -08:00
|
|
|
"throw die" => test_zci(qr/^\d \(random\)$/),
|
2013-01-27 13:16:00 -08:00
|
|
|
"roll 2d6" => test_zci(qr/^\d (\+|-) \d = \d+ \(random\)$/),
|
|
|
|
"roll 3d12 + 4" => test_zci(qr/^\d{1,2} (\+|-) \d{1,2} (\+|-) \d{1,2} (\+|-) \d{1,2} = \d{1,2} \(random\)$/),
|
|
|
|
"throw 1d20" => test_zci(qr/\d{1,2} \(random\)$/),
|
|
|
|
"roll 3d8 - 8" => test_zci(qr/^\d (\+|-) \d (\+|-) \d (\+|-) \d = -?\d+ \(random\)$/),
|
|
|
|
"roll d20" => test_zci(qr/^\d{1,2} \(random\)$/),
|
Added tests for Base64, Dice, EmToPx, FlipText, GoldenRatio, Guid, Periemeter, Roman, SigFigs, TitleCase, Unicode
2012-04-15 16:17:12 -07:00
|
|
|
);
|
|
|
|
|
|
|
|
done_testing;
|