diff options
Diffstat (limited to 'bug/comment_test.go')
-rw-r--r-- | bug/comment_test.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bug/comment_test.go b/bug/comment_test.go new file mode 100644 index 00000000..7079f923 --- /dev/null +++ b/bug/comment_test.go @@ -0,0 +1,12 @@ +package bug + +import "testing" + +func TestCommentEquality(t *testing.T) { + c1 := Comment{} + c2 := Comment{} + + if c1 != c2 { + t.Fatal() + } +} |