Skip to content

Commit

Permalink
add git test fixture for page_file_dir tests
Browse files Browse the repository at this point in the history
  • Loading branch information
technoweenie committed Jan 17, 2011
1 parent f6f8428 commit e77cba9
Show file tree
Hide file tree
Showing 15 changed files with 20 additions and 11 deletions.
1 change: 1 addition & 0 deletions test/examples/page_file_dir.git/COMMIT_EDITMSG
@@ -0,0 +1 @@
initial commit
1 change: 1 addition & 0 deletions test/examples/page_file_dir.git/HEAD
@@ -0,0 +1 @@
ref: refs/heads/master
6 changes: 6 additions & 0 deletions test/examples/page_file_dir.git/config
@@ -0,0 +1,6 @@
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
1 change: 1 addition & 0 deletions test/examples/page_file_dir.git/description
@@ -0,0 +1 @@
Unnamed repository; edit this file 'description' to name the repository.
Binary file added test/examples/page_file_dir.git/index
Binary file not shown.
6 changes: 6 additions & 0 deletions test/examples/page_file_dir.git/info/exclude
@@ -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]
# *~
1 change: 1 addition & 0 deletions test/examples/page_file_dir.git/logs/HEAD
@@ -0,0 +1 @@
0000000000000000000000000000000000000000 22b404803c966dd92865614d86ff22ca12e50c1e rick <technoweenie@gmail.com> 1295287591 -0800 commit (initial): initial commit
1 change: 1 addition & 0 deletions test/examples/page_file_dir.git/logs/refs/heads/master
@@ -0,0 +1 @@
0000000000000000000000000000000000000000 22b404803c966dd92865614d86ff22ca12e50c1e rick <technoweenie@gmail.com> 1295287591 -0800 commit (initial): initial commit
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions test/examples/page_file_dir.git/refs/heads/master
@@ -0,0 +1 @@
22b404803c966dd92865614d86ff22ca12e50c1e
13 changes: 2 additions & 11 deletions test/test_wiki.rb
Expand Up @@ -288,18 +288,9 @@

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

Expand All @@ -318,7 +309,7 @@
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
Expand Down

0 comments on commit e77cba9

Please sign in to comment.