Codebase list golang-github-gobuffalo-packr / 4b092d9a-1e1c-4714-89c2-29136e93501d/upstream v2 / box_import_test.go
4b092d9a-1e1c-4714-89c2-29136e93501d/upstream

Tree @4b092d9a-1e1c-4714-89c2-29136e93501d/upstream (Download .tar.gz)

box_import_test.go @4b092d9a-1e1c-4714-89c2-29136e93501d/upstreamraw · history · blame

package packr_test

import (
	"testing"

	"github.com/gobuffalo/packr/v2/_fixtures/import_pkg"
	"github.com/stretchr/testify/require"
)

func Test_ImportWithBox(t *testing.T) {
	r := require.New(t)

	r.Len(import_pkg.BoxTestNew.List(), 2)

	r.Len(import_pkg.BoxTestNewBox.List(), 2)
}