mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
13 lines
158 B
Go
13 lines
158 B
Go
package utils
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func Test_Init(t *testing.T) {
|
|
Init("cats")
|
|
Equal(t, OpenFileUtil, "cats")
|
|
}
|