added simple package import example

pull/37/head
Mat Ryer 2014-01-28 10:11:02 -07:00
parent df4e46959f
commit 6d984ec0a3
1 changed files with 12 additions and 0 deletions

12
package_test.go Normal file
View File

@ -0,0 +1,12 @@
package testify
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestImports(t *testing.T) {
if assert.Equal(t, 1, 1) != true {
t.Error("Something is wrong.")
}
}