(c *C)
| 3121 | } |
| 3122 | |
| 3123 | func (s *RepositorySuite) TestWorktreeBare(c *C) { |
| 3124 | r, _ := Init(memory.NewStorage(), nil) |
| 3125 | w, err := r.Worktree() |
| 3126 | c.Assert(err, Equals, ErrIsBareRepository) |
| 3127 | c.Assert(w, IsNil) |
| 3128 | } |
| 3129 | |
| 3130 | func (s *RepositorySuite) TestResolveRevision(c *C) { |
| 3131 | f := fixtures.ByURL("https://github.com/git-fixtures/basic.git").One() |
nothing calls this directly
no test coverage detected