Updated tests for PR #3837

pull/3837/head
Erik Sundell 7 years ago
parent 6cdf6cee56
commit 05a1f7f46c

@ -72,10 +72,10 @@ func TestToConfig(t *testing.T) {
f := NewFiles(getTestFiles()) f := NewFiles(getTestFiles())
out := f.Glob("**/captain.txt").AsConfig() out := f.Glob("**/captain.txt").AsConfig()
as.Equal("captain.txt: The Captain\n", out) as.Equal("captain.txt: The Captain", out)
out = f.Glob("ship/**").AsConfig() out = f.Glob("ship/**").AsConfig()
as.Equal("captain.txt: The Captain\nstowaway.txt: Legatt\n", out) as.Equal("captain.txt: The Captain\nstowaway.txt: Legatt", out)
} }
func TestToSecret(t *testing.T) { func TestToSecret(t *testing.T) {
@ -84,7 +84,7 @@ func TestToSecret(t *testing.T) {
f := NewFiles(getTestFiles()) f := NewFiles(getTestFiles())
out := f.Glob("ship/**").AsSecrets() out := f.Glob("ship/**").AsSecrets()
as.Equal("captain.txt: VGhlIENhcHRhaW4=\nstowaway.txt: TGVnYXR0\n", out) as.Equal("captain.txt: VGhlIENhcHRhaW4=\nstowaway.txt: TGVnYXR0", out)
} }
func TestLines(t *testing.T) { func TestLines(t *testing.T) {
@ -99,7 +99,7 @@ func TestLines(t *testing.T) {
} }
func TestToYaml(t *testing.T) { func TestToYaml(t *testing.T) {
expect := "foo: bar\n" expect := "foo: bar"
v := struct { v := struct {
Foo string `json:"foo"` Foo string `json:"foo"`
}{ }{

@ -365,7 +365,7 @@ func TestToYAML(t *testing.T) {
if err != nil { if err != nil {
t.Fatal(err) t.Fatal(err)
} }
expect := "name: value\n" expect := "name: value"
if o != expect { if o != expect {
t.Errorf("Expected %q, got %q", expect, o) t.Errorf("Expected %q, got %q", expect, o)
} }

Loading…
Cancel
Save