mirror of
https://github.com/thegeeklab/drone-yaml.git
synced 2024-11-14 22:40:38 +00:00
13 lines
202 B
Go
13 lines
202 B
Go
package pretty
|
|
|
|
import "testing"
|
|
|
|
func TestSignature(t *testing.T) {
|
|
ok, err := diff("testdata/signature.yml")
|
|
if err != nil {
|
|
t.Error(err)
|
|
} else if !ok {
|
|
t.Errorf("Unepxected formatting")
|
|
}
|
|
}
|