From: Shawn M Moore Date: Tue, 10 Jun 2008 00:50:28 +0000 (+0000) Subject: Nums are Strs too X-Git-Tag: 0.04~86 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=27a22464224e930cc8c32ba969e787aacd863b9e;p=gitmo%2FMouse.git Nums are Strs too --- diff --git a/t/024-isa.t b/t/024-isa.t index 476ab0c..92454bc 100644 --- a/t/024-isa.t +++ b/t/024-isa.t @@ -10,9 +10,9 @@ my @types = qw/Any Item Bool Undef Defined Value Num Int Str ClassName my @type_values = ( undef , [qw/Any Item Undef Bool/], - 0 => [qw/Any Item Defined Bool Value Num Int/], - 1 => [qw/Any Item Defined Bool Value Num Int/], - 1.5 => [qw/Any Item Defined Value Num/], + 0 => [qw/Any Item Defined Bool Value Num Int Str/], + 1 => [qw/Any Item Defined Bool Value Num Int Str/], + 1.5 => [qw/Any Item Defined Value Num Str/], '' => [qw/Any Item Defined Bool Value Str/], 't' => [qw/Any Item Defined Value Str/], 'f' => [qw/Any Item Defined Value Str/],