drone-yaml/yaml/pretty/cron_test.go
2019-02-10 11:00:16 -08:00

19 lines
374 B
Go

// Copyright 2019 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by the Drone Community
// License that can be found in the LICENSE file.
// +build !oss
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")
}
}