From 9e1c45cd07ca60274032080ebbbf2d6bdf114a41 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sun, 21 Nov 2010 22:51:57 -0600 Subject: versions are strings --- t/01-basic.t | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/t/01-basic.t b/t/01-basic.t index a4e4c56..41ad8eb 100644 --- a/t/01-basic.t +++ b/t/01-basic.t @@ -9,8 +9,8 @@ use lib 't/lib/01'; is_deeply( { Foo::Conflicts->conflicts }, { - 'Foo::Thing' => 0.01, - 'Foo::Thing::Sub' => 0.05, + 'Foo::Thing' => '0.01', + 'Foo::Thing::Sub' => '0.05', }, "basic conflicts work" ); @@ -21,24 +21,24 @@ use lib 't/lib/01'; is_deeply( { Bar::Conflicts->conflicts }, { - 'Bar::Local' => 0.02, - 'Bar::Also' => 0.06, - 'Bar::Also::Also' => 0.12, + 'Bar::Local' => '0.02', + 'Bar::Also' => '0.06', + 'Bar::Also::Also' => '0.12', }, "nested conflicts work" ); is_deeply( { Bar::Conflicts2->conflicts }, { - 'Bar::Also' => 0.06, - 'Bar::Also::Also' => 0.12, + 'Bar::Also' => '0.06', + 'Bar::Also::Also' => '0.12', }, "nested conflicts work" ); is_deeply( { Bar::Conflicts3->conflicts }, { - 'Bar::Also::Also' => 0.12, + 'Bar::Also::Also' => '0.12', }, "nested conflicts work" ); -- cgit v1.2.3-54-g00ecf