include the about screen template
[scpubgit/stemmatology.git] / t / text_tradition_parser_self.t
index 00c973d..5583932 100644 (file)
@@ -59,10 +59,10 @@ my $fh = File::Temp->new();
 my $file = $fh->filename;
 $fh->close;
 my $dsn = "dbi:SQLite:dbname=$file";
-my $userstore = Text::Tradition::UserStore->new( { dsn => $dsn,
+my $userstore = Text::Tradition::Directory->new( { dsn => $dsn,
        extra_args => { create => 1 } } );
 my $scope = $userstore->new_scope();
-my $testuser = $userstore->add_user( { url => 'http://example.com' } );
+my $testuser = $userstore->create_user( { url => 'http://example.com' } );
 is( ref( $testuser ), 'Text::Tradition::User', "Created test user via userstore" );
 $testuser->add_tradition( $newt );
 is( $newt->user->id, $testuser->id, "Assigned tradition to test user" );
@@ -73,7 +73,7 @@ warning_is {
 } 'DROPPING user assignment without a specified userstore',
        "Got expected user drop warning on parse";
 $usert = Text::Tradition->new( 'input' => 'Self', 'string' => $graphml_str,
-       'userstore' => { 'dsn' => $dsn } );
+       'userstore' => $userstore );
 is( $usert->user->id, $testuser->id, "Parsed tradition with userstore points to correct user" );
 }