diff options
author | Michael Muré <batolettre@gmail.com> | 2018-07-17 19:28:37 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-07-17 19:28:37 +0200 |
commit | 76ac1787b8de8698b878d1837c5fa8f6fe6403fc (patch) | |
tree | 2261d605eb533bc5f037887a983da0039281c9f5 /tests/operation_iterator_test.go | |
parent | 7b19b10e19e5dbbae79a47d3e4338b15b3e8d972 (diff) | |
download | git-bug-76ac1787b8de8698b878d1837c5fa8f6fe6403fc.tar.gz |
add bug status + open/close commands
Diffstat (limited to 'tests/operation_iterator_test.go')
-rw-r--r-- | tests/operation_iterator_test.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/operation_iterator_test.go b/tests/operation_iterator_test.go index 03747fa4..9c7c82b6 100644 --- a/tests/operation_iterator_test.go +++ b/tests/operation_iterator_test.go @@ -16,6 +16,7 @@ var ( createOp = operations.NewCreateOp(rene, "title", "message") setTitleOp = operations.NewSetTitleOp("title2") addCommentOp = operations.NewAddCommentOp(rene, "message2") + SetStatusOp = operations.NewSetStatusOp(bug.ClosedStatus) mockRepo = repository.NewMockRepoForTest() ) @@ -29,6 +30,7 @@ func TestOpIterator(t *testing.T) { bug1.Append(createOp) bug1.Append(setTitleOp) + bug1.Append(SetStatusOp) bug1.Commit(mockRepo) bug1.Append(setTitleOp) |