mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-01 01:00:41 +00:00
26 lines
537 B
Go
26 lines
537 B
Go
// Copyright 2019 Drone.IO Inc. All rights reserved.
|
|
// Use of this source code is governed by the Drone Non-Commercial License
|
|
// that can be found in the LICENSE file.
|
|
|
|
package pretty
|
|
|
|
import "testing"
|
|
|
|
func TestSecret(t *testing.T) {
|
|
ok, err := diff("testdata/secret.yml")
|
|
if err != nil {
|
|
t.Error(err)
|
|
} else if !ok {
|
|
t.Errorf("Unepxected formatting")
|
|
}
|
|
}
|
|
|
|
func TestGetSecret(t *testing.T) {
|
|
ok, err := diff("testdata/secret_get.yml")
|
|
if err != nil {
|
|
t.Error(err)
|
|
} else if !ok {
|
|
t.Errorf("Unepxected formatting")
|
|
}
|
|
}
|