add git test fixture for page_file_dir tests

This commit is contained in:
rick
2011-01-17 10:08:58 -08:00
parent f6f8428daf
commit e77cba96fd
15 changed files with 20 additions and 11 deletions
@@ -0,0 +1 @@
initial commit
+1
View File
@@ -0,0 +1 @@
ref: refs/heads/master
+6
View File
@@ -0,0 +1,6 @@
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
@@ -0,0 +1 @@
Unnamed repository; edit this file 'description' to name the repository.
Binary file not shown.
@@ -0,0 +1,6 @@
# git ls-files --others --exclude-from=.git/info/exclude
# Lines that start with '#' are comments.
# For a project mostly in C, the following would be a good set of
# exclude patterns (uncomment them if you want to use them):
# *.[oa]
# *~
@@ -0,0 +1 @@
0000000000000000000000000000000000000000 22b404803c966dd92865614d86ff22ca12e50c1e rick <technoweenie@gmail.com> 1295287591 -0800 commit (initial): initial commit
@@ -0,0 +1 @@
0000000000000000000000000000000000000000 22b404803c966dd92865614d86ff22ca12e50c1e rick <technoweenie@gmail.com> 1295287591 -0800 commit (initial): initial commit
@@ -0,0 +1 @@
22b404803c966dd92865614d86ff22ca12e50c1e
+2 -11
View File
@@ -288,18 +288,9 @@ end
context "page_file_dir option" do
setup do
@path = testpath('examples/pfdtest')
@path = cloned_testpath('examples/page_file_dir')
@repo = Grit::Repo.init(@path)
@page_file_dir = 'docs'
Dir.chdir(@path) do
Dir.mkdir(@page_file_dir)
File.open("docs/foo.md", "w"){|f| f.print "Hello foo" }
@repo.add("docs/foo.md")
File.open("bar.md", "w"){|f| f.print "Hello bar" }
@repo.add("bar.md")
@repo.commit_index("Added docs/foo.md and bar.md")
end
@wiki = Gollum::Wiki.new(@path, :page_file_dir => @page_file_dir)
end
@@ -318,7 +309,7 @@ context "page_file_dir option" do
end
test "search results should be restricted in page filer dir" do
results = @wiki.search("Hello")
results = @wiki.search("foo")
assert_equal 1, results.size
assert_equal "foo", results[0][:name]
end