Codebase list golang-github-gobuffalo-packr / 2a1f936e-920d-4165-8fc1-b806e46771a1/main v2 / box_import_test.go
2a1f936e-920d-4165-8fc1-b806e46771a1/main

Tree @2a1f936e-920d-4165-8fc1-b806e46771a1/main (Download .tar.gz)

box_import_test.go @2a1f936e-920d-4165-8fc1-b806e46771a1/mainraw · 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)
}