2012-12-17 21:38:33 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
2017-10-23 18:23:46 +02:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2012-12-17 21:38:33 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestTemplatesCompile(t *testing.T) {
|
|
|
|
templates := getTemplates()
|
|
|
|
assert.NotEqual(t, templates, nil)
|
|
|
|
}
|