added test cases for non-triggers
parent
a03a4da732
commit
f3380f9a54
6
t/Base.t
6
t/Base.t
|
@ -44,8 +44,10 @@ ddg_goodie_test(
|
||||||
'FF in hex to decimal' => build_test('FF', 16, 10, '255'),
|
'FF in hex to decimal' => build_test('FF', 16, 10, '255'),
|
||||||
'0xFF in base 10' => 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'),
|
'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;
|
done_testing;
|
||||||
|
|
Loading…
Reference in New Issue