mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-18 10:42:44 +02:00
12 lines
255 B
Go
12 lines
255 B
Go
package templates // import "github.com/pomerium/pomerium/internal/templates"
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/pomerium/pomerium/internal/testutil"
|
|
)
|
|
|
|
func TestTemplatesCompile(t *testing.T) {
|
|
templates := New()
|
|
testutil.NotEqual(t, templates, nil)
|
|
}
|