aboutsummaryrefslogtreecommitdiff
path: root/t/bazaar.t
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-07-24 22:43:57 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-07-24 22:43:57 +0200
commit7538d356c8e7cd715c0a7109f84881487f853cfc (patch)
tree27bf40c7535df3e3f251c5afd9f262bb15640c3b /t/bazaar.t
parent1dec41278de8b0f33e1e87ec2f36cdd603528fad (diff)
downloadikiwiki-7538d356c8e7cd715c0a7109f84881487f853cfc.tar
ikiwiki-7538d356c8e7cd715c0a7109f84881487f853cfc.tar.gz
Support staging commands in bzr backend.
Diffstat (limited to 't/bazaar.t')
-rwxr-xr-xt/bazaar.t17
1 files changed, 15 insertions, 2 deletions
diff --git a/t/bazaar.t b/t/bazaar.t
index f064814fe..b182d1d32 100755
--- a/t/bazaar.t
+++ b/t/bazaar.t
@@ -12,7 +12,7 @@ BEGIN {
}
}
}
-use Test::More tests => 11;
+use Test::More tests => 13;
BEGIN { use_ok("IkiWiki"); }
@@ -45,7 +45,7 @@ my $message = "Added the second page";
my $test2 = readfile("t/test2.mdwn");
writefile('test2.mdwn', $config{srcdir}, $test2);
system "bzr add $config{srcdir}/test2.mdwn";
-system "bzr commit --author \"$user\" -m \"$message\" $config{srcdir}";
+system "bzr commit --quiet --author \"$user\" -m \"$message\" $config{srcdir}";
@changes = IkiWiki::rcs_recentchanges(3);
@@ -59,4 +59,17 @@ is($changes[1]{pages}[0]{"page"}, "test1.mdwn");
my $ctime = IkiWiki::rcs_getctime("test2.mdwn");
ok($ctime >= time() - 20);
+writefile('test3.mdwn', $config{srcdir}, $test1);
+IkiWiki::rcs_add("test3.mdwn");
+IkiWiki::rcs_rename("test3.mdwn", "test4.mdwn");
+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");
+
+IkiWiki::rcs_remove("test4.mdwn");
+IkiWiki::rcs_commit_staged("Remove the 4th page", "moo", "Joe User");
+
system "rm -rf $dir";