use
lib
qw( ./lib ./t/lib ../inc ./inc )
;
ok is_String(
"rats"
),
"is_String works (value that should pass)"
;
ok !is_String([]),
"is_String works (value that should fail)"
;
ok is_Number(5.5),
"is_Number works (value that should pass)"
;
ok !is_Number(
"rats"
),
"is_Number works (value that should fail)"
;
ok is_Integer(5),
"is_Integer works (value that should pass)"
;
ok !is_Integer(5.5),
"is_Integer works (value that should fail)"
;
ok is_SmallInteger(5),
"is_SmallInteger works (value that should pass)"
;
ok !is_SmallInteger(12),
"is_SmallInteger works (value that should fail)"
;
done_testing;