Revert "Add verbose user repo feed"

This reverts commit cbfe6228ee.
This commit is contained in:
Scott Ferguson
2014-10-30 08:26:49 -05:00
parent cbfe6228ee
commit dddb5af87d
5 changed files with 0 additions and 74 deletions

View File

@@ -228,13 +228,6 @@ func TestCommitstore(t *testing.T) {
g.Assert(commits[0].RepoID).Equal(commit1.RepoID)
g.Assert(commits[0].Branch).Equal(commit1.Branch)
g.Assert(commits[0].Sha).Equal(commit1.Sha)
verboseCommits, err := cs.GetCommitListUserVerbose(&model.User{ID: 1})
g.Assert(err == nil).IsTrue()
g.Assert(len(verboseCommits)).Equal(2)
g.Assert(verboseCommits[0].RepoID).Equal(commit1.RepoID)
g.Assert(verboseCommits[0].Branch).Equal(commit1.Branch)
g.Assert(verboseCommits[0].Sha).Equal(commit1.Sha)
})
g.It("Should enforce unique Sha + Branch", func() {