From f3380f9a54ad40e217b18bd7d0ee9ea7562133b9 Mon Sep 17 00:00:00 2001 From: jonk1993 Date: Thu, 26 May 2016 00:43:08 +0000 Subject: [PATCH] added test cases for non-triggers --- t/Base.t | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/t/Base.t b/t/Base.t index 8592b4532..df3240018 100644 --- a/t/Base.t +++ b/t/Base.t @@ -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;