1
0
mirror of https://github.com/stretchr/testify.git synced 2025-04-05 00:19:47 +00:00
testify/package_test.go
Boyan Soubachov 12fe0eb94c Remove redundant files
* Removed redundant `dep` files as we now use Go moduels
* Correct import order for package_test.go
2020-01-28 10:21:55 -07:00

14 lines
186 B
Go

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