1
0
mirror of https://github.com/taigrr/wtf synced 2026-03-21 21:12:21 -07:00
Files
wtf/utils/init_test.go
Chris Cummer 2918e49346 Fix failing specs
Signed-off-by: Chris Cummer <chriscummer@me.com>
2019-10-15 15:33:03 -04:00

15 lines
218 B
Go

package utils
import (
"testing"
. "github.com/stretchr/testify/assert"
)
func Test_Init(t *testing.T) {
Init("cats", []string{"dogs"})
Equal(t, OpenFileUtil, "cats")
Equal(t, OpenUrlUtil, []string{"dogs"})
}