aboutsummaryrefslogtreecommitdiff
path: root/t/git.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/git.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/git.t')
-rwxr-xr-xt/git.t11
1 files changed, 6 insertions, 5 deletions
diff --git a/t/git.t b/t/git.t
index 0a5ba7266..b3aa6a80b 100755
--- a/t/git.t
+++ b/t/git.t
@@ -22,6 +22,7 @@ BEGIN { use_ok("IkiWiki"); }
%config=IkiWiki::defaultconfig();
$config{rcs} = "git";
$config{srcdir} = "$dir/src";
+IkiWiki::loadplugins();
IkiWiki::checkconfig();
system "cd $gitrepo && git init >/dev/null 2>&1";
@@ -46,7 +47,7 @@ IkiWiki::rcs_commit("test1.mdwn", "Added the first page", "moo");
is($#changes, 1);
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");
# Manual commit
my $message = "Added the second page";
@@ -61,9 +62,9 @@ system "cd $config{srcdir}; git push origin >/dev/null 2>&1";
is($#changes, 2);
is($changes[0]{message}[0]{"line"}, $message);
-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");
# Renaming
@@ -75,7 +76,7 @@ IkiWiki::rcs_commit_staged("Added the 4th page", "moo", "Joe User");
@changes = IkiWiki::rcs_recentchanges(4);
is($#changes, 3);
-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");
@@ -84,7 +85,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");