func TestBytesDefault(t *testing.T) { in, out := []byte("baz"), []byte("baz") os.Clearenv() if got := env.Bytes("BYTES_DEFAULT", in); !bytes.Equal(got, out) { t.Errorf(`Bytes("BYTES_DEFAULT", "%s") = %s, want %s`, in, got, out) } }
func TestBytes(t *testing.T) { in, out := []byte("baz"), []byte("bar") os.Setenv("BYTES", string(out)) if got := env.Bytes("BYTES", in); !bytes.Equal(got, out) { t.Errorf(`Bytes("BYTES", "%s") = %s, want %s`, in, got, out) } }
func ExampleBytes() { os.Setenv("BYTES", "foo") fmt.Printf("%s", env.Bytes("BYTES", nil)) // Output: foo }