summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/segmentio/backo-go/vendor/github.com/bmizerany/assert/example/point_test.go
blob: 34e791a43c91901d2112c58741214828adbf02c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package point

import (
	"testing"
	"assert"
)

func TestAsserts(t *testing.T) {
	p1 := Point{1, 1}
	p2 := Point{2, 1}

	assert.Equal(t, p1, p2)
}