1
mirror of https://github.com/jlelse/GoBlog synced 2024-05-29 03:34:27 +00:00
GoBlog/pkgs/minify/minify_test.go

13 lines
160 B
Go

package minify
import (
"testing"
"github.com/stretchr/testify/assert"
)
func Test_minify(t *testing.T) {
var min Minifier
assert.NotNil(t, min.Get())
}