aboutsummaryrefslogtreecommitdiffstats
path: root/test/bug_test.go
blob: d7c3ddc50f89ed3a2986254250f47534feb7fe60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package test

import (
	"github.com/MichaelMure/git-bug/bug"
	"github.com/MichaelMure/git-bug/bug/operations"
	"testing"
)

func TestBug(t *testing.T) {
	var rene = bug.Person{
		Name:  "René Descartes",
		Email: "rene@descartes.fr",
	}

	var createOp = operations.NewCreateOp(rene, "title", "message")

	bug1, err := bug.NewBug()

	if err != nil {
		t.Error(err)
	}

	if bug1.IsValid() {
		t.Fatal("Empty bug should be invalid")
	}

	bug1.Append(createOp)

	if !bug1.IsValid() {
		t.Fatal("Bug with just a CREATE should be valid")
	}

	bug1.Append(createOp)

	if bug1.IsValid() {
		t.Fatal("Bug with multiple CREATE should be invalid")
	}

	bug1.Commit()

	if bug1.IsValid() {
		t.Fatal("Bug with multiple CREATE should be invalid")
	}
}