prepare for release of C::P::Authentication::Store::Htpasswd
[catagits/Catalyst-Authentication-Store-Htpasswd.git] / t / backend_md5.t
index c6f524a..61a5fbb 100644 (file)
@@ -11,8 +11,6 @@ BEGIN {
        plan tests => 12;
 }
 
-use Path::Class;
-
 use File::Temp qw/tempfile/;
 
 my $m; BEGIN { use_ok($m = "Catalyst::Plugin::Authentication::Store::Htpasswd::Backend") }
@@ -23,14 +21,12 @@ my $passwd = Authen::Htpasswd->new($tmp, { encrypt_hash => 'md5' });
 
 $passwd->add_user("user", "s3cr3t");
 
-
 can_ok($m, "new");
 isa_ok(my $o = $m->new( $passwd ), $m);
 
 can_ok($m, "file");
 isa_ok( $o->file, "Authen::Htpasswd");
 
-
 can_ok( $m, "user_supports");
 ok( $m->user_supports(qw/password self_check/), "user_supports self check" );