Codebase list golang-github-gobuffalo-packr / 40e262bc-f5f6-42f4-9574-aeb48a15bf62/main v2 / box_import_test.go
40e262bc-f5f6-42f4-9574-aeb48a15bf62/main

Tree @40e262bc-f5f6-42f4-9574-aeb48a15bf62/main (Download .tar.gz)

box_import_test.go @40e262bc-f5f6-42f4-9574-aeb48a15bf62/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)
}