Mirror of a distributed, offline-first bug tracker embedded in git
1package bug 2 3import "testing" 4 5func TestCommentEquality(t *testing.T) { 6 c1 := Comment{} 7 c2 := Comment{} 8 9 if c1 != c2 { 10 t.Fatal() 11 } 12}