summaryrefslogtreecommitdiff
path: root/experimental/embed/types_test.go
blob: 3a93ce183c63d55f920e05046cf9fdf76a609296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package embed

import (
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestTypeBasics(t *testing.T) {
	c := &Configuration{}
	assert.NotNil(t, c.ToInternal())

	p := &Providers{}
	assert.NotNil(t, p.ToInternal())
}