Checking in changes prior to tagging of version 1.002. Changelog diff is:
[catagits/Catalyst-Authentication-Store-Htpasswd.git] / t / backend.t
index aa0f6e9..0b800a9 100644 (file)
@@ -36,11 +36,11 @@ ok( $u->check_password( "s3cr3t" ), "password is s3cr3t");
 
 ok( $m->user_supports(qw/session/), "user_supports session");
 
-is( $u->store, $o, "can get store");
+is( $u->_store, $o, "can get store");
 
 can_ok( $m, "from_session" );
 can_ok( $u, "for_session" );
 
-my $recovered = $u->store->from_session( undef, $u->for_session );
+my $recovered = $u->_store->from_session( undef, $u->for_session );
 
 is( $recovered->username, $u->username, "recovery from session works");