File: package_test.go

package info (click to toggle)
golang-github-jmespath-go-jmespath 0.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-proposed-updates, experimental, sid, trixie
  • size: 3,564 kB
  • sloc: makefile: 39; sh: 23
file content (13 lines) | stat: -rw-r--r-- 207 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
package testify

import (
	"testing"

	"github.com/jmespath/go-jmespath/internal/testify/assert"
)

func TestImports(t *testing.T) {
	if assert.Equal(t, 1, 1) != true {
		t.Error("Something is wrong.")
	}
}