diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-07-25 12:03:34 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-07-25 12:03:34 -0400 |
commit | c401cf4f0ccdf3817fdedc7b0cff5801286dc9bf (patch) | |
tree | 78d32c09e022b1c91f72be39300bfef41170bf9d /t | |
parent | 89e0de5bc46f87231a3447acb8609641cc9162aa (diff) | |
parent | 7538d356c8e7cd715c0a7109f84881487f853cfc (diff) | |
download | ikiwiki-c401cf4f0ccdf3817fdedc7b0cff5801286dc9bf.tar ikiwiki-c401cf4f0ccdf3817fdedc7b0cff5801286dc9bf.tar.gz |
Merge commit 'jelmer/master'
Diffstat (limited to 't')
-rwxr-xr-x | t/bazaar.t | 17 |
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"; |