Sha256: 6ffb74a5d2bec50554936874387255c6d18f7c580b5ef3faa05950f05f221a27

Contents?: true

Size: 708 Bytes

Versions: 12

Compression:

Stored size: 708 Bytes

Contents

# ~*~ encoding: utf-8 ~*~
path = File.join(File.dirname(__FILE__), "helper") 
require File.expand_path(path)

context "File" do
  setup do
    @wiki = Gollum::Wiki.new(testpath("examples/lotr.git"))
  end

  test "new file" do
    file = Gollum::File.new(@wiki)
    assert_nil file.raw_data
  end

  test "existing file" do
    commit = @wiki.repo.commits.first
    file   = @wiki.file("Mordor/todo.txt")
    assert_equal "[ ] Write section on Ents\n", file.raw_data
    assert_equal 'todo.txt',         file.name
    assert_equal commit.id,          file.version.id
    assert_equal commit.author.name, file.version.author.name
  end

  test "accessing tree" do
    assert_nil @wiki.file("Mordor")
  end
end

Version data entries

12 entries across 12 versions & 3 rubygems

Version Path
gollum-bibanon-1.4.4 test/test_file.rb
gollum-bibanon-1.4.3 test/test_file.rb
gollum-bibanon-1.4.2 test/test_file.rb
gollum-bibanon-1.4.1 test/test_file.rb
gollum-bibanon-1.3.2 test/test_file.rb
gollum-bibanon-1.4.0 test/test_file.rb
gollum-bibanon-1.3.1 test/test_file.rb
gollum-1.3.1 test/test_file.rb
jugyo-gollum-1.3.1 test/test_file.rb
gollum-1.2.1 test/test_file.rb
gollum-1.3.0 test/test_file.rb
gollum-1.2.0 test/test_file.rb