12 lines
177 B
Go
12 lines
177 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/bmizerany/assert"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestTemplatesCompile(t *testing.T) {
|
||
|
templates := getTemplates()
|
||
|
assert.NotEqual(t, templates, nil)
|
||
|
}
|