(c *C)
| 218 | } |
| 219 | |
| 220 | func (s *SubmoduleSuite) TestSubmodulesStatus(c *C) { |
| 221 | sm, err := s.Worktree.Submodules() |
| 222 | c.Assert(err, IsNil) |
| 223 | |
| 224 | status, err := sm.Status() |
| 225 | c.Assert(err, IsNil) |
| 226 | c.Assert(status, HasLen, 2) |
| 227 | } |
| 228 | |
| 229 | func (s *SubmoduleSuite) TestSubmodulesUpdateContext(c *C) { |
| 230 | if testing.Short() { |
nothing calls this directly
no test coverage detected