github.com/sercand/please@v13.4.0+incompatible/test/subrepo_subinclude/subrepo_test.go (about)

     1  // Package test implements a test used to verify subincludes work on subrepos.
     2  // The package name deliberately differs from the directory name in order to
     3  // test some functionality of the subincluded rule.
     4  package test
     5  
     6  import (
     7  	"testing"
     8  
     9  	"github.com/stretchr/testify/assert"
    10  )
    11  
    12  func TestEmbeddedData(t *testing.T) {
    13  	assert.EqualValues(t, []byte("kittens!\n"), MustAsset("test.txt"))
    14  }