(c *C)
| 3365 | } |
| 3366 | |
| 3367 | func (s *RepositorySuite) TestDotGitToOSFilesystemsInvalidPath(c *C) { |
| 3368 | _, _, err := dotGitToOSFilesystems("\000", false) |
| 3369 | c.Assert(err, NotNil) |
| 3370 | } |
| 3371 | |
| 3372 | func (s *RepositorySuite) TestIssue674(c *C) { |
| 3373 | r, _ := Init(memory.NewStorage(), nil) |
nothing calls this directly
no test coverage detected