1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
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"})
}