diff options
author | Michael Muré <batolettre@gmail.com> | 2018-07-13 17:07:24 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-07-13 17:07:24 +0200 |
commit | 289f8d53ee960d35c1f0c42e8753ad536737b875 (patch) | |
tree | ca1f0af1e041ff5779d39a79c486c331a88c0334 /tests/operation_iterator_test.go | |
parent | deff9e0a41eca43f832314219241c9a63cf8007e (diff) | |
download | git-bug-289f8d53ee960d35c1f0c42e8753ad536737b875.tar.gz |
little bit more tests
Diffstat (limited to 'tests/operation_iterator_test.go')
-rw-r--r-- | tests/operation_iterator_test.go | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/tests/operation_iterator_test.go b/tests/operation_iterator_test.go new file mode 100644 index 00000000..e41fff99 --- /dev/null +++ b/tests/operation_iterator_test.go @@ -0,0 +1,51 @@ +package tests + +import ( + "github.com/MichaelMure/git-bug/bug" + "github.com/MichaelMure/git-bug/bug/operations" + "testing" +) + +var ( + rene = bug.Person{ + Name: "René Descartes", + Email: "rene@descartes.fr", + } + + createOp = operations.NewCreateOp(rene, "title", "message") + setTitleOp = operations.NewSetTitleOp("title2") +) + +func TestOpIterator(t *testing.T) { + + bug1, err := bug.NewBug() + + if err != nil { + t.Fatal(err) + } + + bug1.Append(createOp) + bug1.Append(setTitleOp) + bug1.Commit() + + bug1.Append(setTitleOp) + bug1.Append(setTitleOp) + bug1.Append(setTitleOp) + bug1.Commit() + + bug1.Append(setTitleOp) + bug1.Append(setTitleOp) + bug1.Append(setTitleOp) + + it := bug.NewOperationIterator(bug1) + + counter := 0 + for it.Next() { + _ = it.Value() + counter++ + } + + if counter != 8 { + t.Fatalf("Wrong count of value iterated (%d instead of 8)", counter) + } +} |