mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2024-11-24 08:52:25 +02:00
13 lines
178 B
Go
13 lines
178 B
Go
package main
|
|
|
|
import (
|
|
"github.com/bmizerany/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestTemplatesCompile(t *testing.T) {
|
|
templates := getTemplates()
|
|
assert.NotEqual(t, templates, nil)
|
|
|
|
}
|