1 Star 0 Fork 0

mwdworks/packr

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
deprecated_test.go 916 Bytes
一键复制 编辑 原始数据 按行查看 历史
Yonghwan SO 提交于 2021-10-30 20:53 . moved v2 files from v2/ to /
package packr
import (
"testing"
"github.com/stretchr/testify/require"
)
func Test_PackBytes(t *testing.T) {
r := require.New(t)
box := NewBox("my/box")
name := "foo.txt"
body := []byte("foo!!")
PackBytes(box.Name, name, body)
f, err := box.FindString(name)
r.NoError(err)
r.Equal(string(body), f)
}
func Test_PackBytesGzip(t *testing.T) {
r := require.New(t)
box := NewBox("my/box")
name := "foo.txt"
body := []byte("foo!!")
PackBytesGzip(box.Name, name, body)
f, err := box.FindString(name)
r.NoError(err)
r.Equal(string(body), f)
}
func Test_PackJSONBytes(t *testing.T) {
r := require.New(t)
box := NewBox("my/box")
name := "foo.txt"
body := "\"PGgxPnRlbXBsYXRlcy9tYWlsZXJzL2xheW91dC5odG1sPC9oMT4KCjwlPSB5aWVsZCAlPgo=\""
PackJSONBytes(box.Name, name, body)
f, err := box.FindString(name)
r.NoError(err)
r.Equal("<h1>templates/mailers/layout.html</h1>\n\n<%= yield %>\n", f)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mwdworks/packr.git
git@gitee.com:mwdworks/packr.git
mwdworks
packr
packr
master

搜索帮助