11 lines
173 B
Go
11 lines
173 B
Go
package state
|
|
|
|
import "testing"
|
|
|
|
func TestTrimExt(t *testing.T) {
|
|
got := trimExt("foo.yaml")
|
|
if got != "foo" {
|
|
t.Fatalf("expected foo, got %s", got)
|
|
}
|
|
}
|