diff options
author | Joshua Sjoding <joshs@scjalliance.com> | 2016-01-23 00:50:29 -0800 |
---|---|---|
committer | Joshua Sjoding <joshs@scjalliance.com> | 2016-01-23 00:50:29 -0800 |
commit | 7ba1014b73e4d466320a29f7e3f47fcefe58695d (patch) | |
tree | be9ff334eaae5547651d2084021fcfd4b70a9db9 /commit_test.go | |
parent | 050fb78d77b30014acd0b6eefc88ec8a49c20371 (diff) | |
download | go-git-7ba1014b73e4d466320a29f7e3f47fcefe58695d.tar.gz |
Repository now works against the generic ObjectStore interface
Diffstat (limited to 'commit_test.go')
-rw-r--r-- | commit_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/commit_test.go b/commit_test.go index 67b9e77..1202d59 100644 --- a/commit_test.go +++ b/commit_test.go @@ -40,11 +40,14 @@ func (s *SuiteCommit) SetUpSuite(c *C) { } } +// FIXME: Test the new CommitIter +/* func (s *SuiteCommit) TestIterClose(c *C) { i := &iter{ch: make(chan core.Object, 1)} i.Close() i.Close() } +*/ var fileTests = []struct { repo string // the repo name as in localRepos |