Skip to content

Commit

Permalink
test 0.base(2), RT #112872
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed May 13, 2012
1 parent 5c7bb81 commit 259bfe3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion S32-num/base.t
@@ -1,9 +1,11 @@
use v6;
use Test;

plan 10;
plan 11;

is 0.base(8), '0', '0.base(something)';
# RT #112872
is 0.base(2), '0', '0.base(2)';
is 42.base(10), '42', '42.base(10)';
is 42.base(16), '2A', '42.base(16)';
is 42.base(2) , '101010', '42.base(2)';
Expand Down

0 comments on commit 259bfe3

Please sign in to comment.