rename file to match other tests
[gitmo/MooseX-Params-Validate.git] / t / 010.overloaded.t
diff --git a/t/010.overloaded.t b/t/010.overloaded.t
deleted file mode 100644 (file)
index 6c861de..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-use Test::More tests => 4;
-use strict;
-use warnings;
-
-{
-    package Foo;
-
-    use Moose;
-    use MooseX::Params::Validate;
-    use overload (
-        qw{""} => 'to_string',
-    );
-
-    has 'id' => (
-        is      => 'ro',
-        isa     => 'Str',
-        default => '1.10.100',
-    );
-
-    sub to_string {
-        my ( $self, %args ) = validated_hash(
-            \@_,
-            padded => {
-                isa      => 'Bool',
-                optional => 1,
-                default  => 0,
-            },
-        );
-
-        # 1.10.100 => 0001.0010.0100
-        my $id
-            = $args{padded}
-            ? join( '.',
-            map { sprintf( "%04d", $_ ) } split( /\./, $self->id ) )
-            : $self->id;
-
-        return $id;
-    }
-}
-
-isa_ok( my $foo = Foo->new(), 'Foo', 'new' );
-
-is( $foo->id, '1.10.100', 'id' );
-
-is( $foo->to_string, '1.10.100', 'to_string' );
-
-is(
-    $foo->to_string( padded => 1 ), '0001.0010.0100',
-    'to_string( padded => 1 )'
-);
-