added test cases for non-triggers

master
jonk1993 2016-05-26 00:43:08 +00:00
parent a03a4da732
commit f3380f9a54
1 changed files with 4 additions and 2 deletions

View File

@ -44,8 +44,10 @@ ddg_goodie_test(
'FF in hex to decimal' => build_test('FF', 16, 10, '255'),
'0xFF in base 10' => build_test('FF', 16, 10, '255'),
'BEEF as base 36 to hex' => build_test('BEEF', 36, 16, '81DA7'),
'HELLOWORLD as base 33 to decimal'=> build_test('HELLOWORLD', 33, 10, '809608041709942')
'HELLOWORLD as base 33 to dec'=> build_test('HELLOWORLD', 33, 10, '809608041709942'),
'0xFF in binary to decimal' => undef,
'0b1111 in hex as binary' => undef,
'0xFF in binary hex as decmal' => undef
);
done_testing;