HexToASCII: Add too long string test.

I also did some rearrangement of the test source, because I kept getting
lost in it, despiteit being so short. I hope this is ok.
master
Matt Miller 2014-01-08 07:43:10 +08:00
parent 91117a9eb7
commit c08fe0dae7
1 changed files with 8 additions and 7 deletions

View File

@ -6,15 +6,16 @@ use Test::More;
use DDG::Test::Goodie;
zci answer_type => 'ascii';
zci is_cached => 1;
zci is_cached => 1;
ddg_goodie_test(
[qw(
DDG::Goodie::HexToASCII
)],
'ascii 0x7465007374' => test_zci('test (ASCII)', html => 'te<code title="null">[NUL]</code>st (ASCII)'),
'ascii 0x74657374' => test_zci('test (ASCII)', html => 'test (ASCII)'),
'ascii 0x5468697320697320612074657374' => test_zci('This is a test (ASCII)', html => 'This is a test (ASCII)'),
[qw( DDG::Goodie::HexToASCII )],
'ascii 0x7465007374' => test_zci('test (ASCII)', html => 'te<code title="null">[NUL]</code>st (ASCII)'),
'ascii 0x74657374' => test_zci('test (ASCII)', html => 'test (ASCII)'),
'ascii 0x5468697320697320612074657374' => test_zci('This is a test (ASCII)', html => 'This is a test (ASCII)'),
'ascii 0x466f7220736f6d6520726561736f6e2c2049206465636964656420746f2061736b20612073656172636820656e67696e6520746f20636f6e766572742068657820746f2041534349492e0d0a436f6f6c2c20746869732073656172636820656e67696e6520646f65732069742c20756e74696c20492072756e206f7574206f662073706163652e'
=> test_zci('For some reason, I decided to ask a search engine to convert hex to ASCII.Cool, this search engine does it, until I run out of ... (ASCII)', html => 'For some reason, I decided to ask a search engine to convert hex to ASCII.<code title="carriage return">[CR]</code><code title="linefeed">[LF]</code>Cool, this search engine does it, until I run out of &hellip; (ASCII)'),
);
done_testing;