aboutsummaryrefslogtreecommitdiff
path: root/t/bazaar.t
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-08-01 16:03:23 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-08-01 16:45:05 -0400
commit2faf1ec601d88a231d5c1399a789badc0e300c29 (patch)
tree9a16009705c768382ec69291a460b4cfb579a0c1 /t/bazaar.t
parentf41448d9caf591ba369bf319297d15552be94678 (diff)
downloadikiwiki-2faf1ec601d88a231d5c1399a789badc0e300c29.tar
ikiwiki-2faf1ec601d88a231d5c1399a789badc0e300c29.tar.gz
update rcs tests for new rcs plugin load method
As a side effect, since loadplugins is called, mdwn is loaded, so rcs_recentchanges will return page names, not filenames, for mdwn files.
Diffstat (limited to 't/bazaar.t')
-rwxr-xr-xt/bazaar.t11
1 files changed, 6 insertions, 5 deletions
diff --git a/t/bazaar.t b/t/bazaar.t
index 675a143b5..2ca44a65e 100755
--- a/t/bazaar.t
+++ b/t/bazaar.t
@@ -19,6 +19,7 @@ BEGIN { use_ok("IkiWiki"); }
%config=IkiWiki::defaultconfig();
$config{rcs} = "bzr";
$config{srcdir} = "$dir/repo";
+IkiWiki::loadplugins();
IkiWiki::checkconfig();
system "bzr init $config{srcdir}";
@@ -34,7 +35,7 @@ my @changes;
is($#changes, 0);
is($changes[0]{message}[0]{"line"}, "Added the first page");
-is($changes[0]{pages}[0]{"page"}, "test1.mdwn");
+is($changes[0]{pages}[0]{"page"}, "test1");
is($changes[0]{user}, "Joe User");
# Manual commit
@@ -52,9 +53,9 @@ system "bzr commit --quiet --author \"$user\" -m \"$message\" $config{srcdir}";
is($#changes, 1);
is($changes[0]{message}[0]{"line"}, $message);
is($changes[0]{user}, $username);
-is($changes[0]{pages}[0]{"page"}, "test2.mdwn");
+is($changes[0]{pages}[0]{"page"}, "test2");
-is($changes[1]{pages}[0]{"page"}, "test1.mdwn");
+is($changes[1]{pages}[0]{"page"}, "test1");
my $ctime = IkiWiki::rcs_getctime("test2.mdwn");
ok($ctime >= time() - 20);
@@ -67,7 +68,7 @@ IkiWiki::rcs_commit_staged("Added the 4th page", "moo", "Joe User");
@changes = IkiWiki::rcs_recentchanges(4);
is($#changes, 2);
-is($changes[0]{pages}[0]{"page"}, "test4.mdwn");
+is($changes[0]{pages}[0]{"page"}, "test4");
ok(mkdir($config{srcdir}."/newdir"));
IkiWiki::rcs_rename("test4.mdwn", "newdir/test5.mdwn");
@@ -76,7 +77,7 @@ IkiWiki::rcs_commit_staged("Added the 5th page", "moo", "Joe User");
@changes = IkiWiki::rcs_recentchanges(4);
is($#changes, 3);
-is($changes[0]{pages}[0]{"page"}, "newdir/test5.mdwn");
+is($changes[0]{pages}[0]{"page"}, "newdir/test5");
IkiWiki::rcs_remove("newdir/test5.mdwn");
IkiWiki::rcs_commit_staged("Remove the 5th page", "moo", "Joe User");