aboutsummaryrefslogtreecommitdiffstats
path: root/bug/comment_test.go
blob: 7079f9239eb8a1a6cb02330d65af850a55062cad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package bug

import "testing"

func TestCommentEquality(t *testing.T) {
	c1 := Comment{}
	c2 := Comment{}

	if c1 != c2 {
		t.Fatal()
	}
}