drone-yaml/yaml/pretty/cron_test.go
2019-01-22 15:44:17 -08:00

13 lines
192 B
Go

package pretty
import "testing"
func TestCron(t *testing.T) {
ok, err := diff("testdata/cron.yml")
if err != nil {
t.Error(err)
} else if !ok {
t.Errorf("Unepxected formatting")
}
}