diff --git a/fixtures/quoted.env b/fixtures/quoted.env index a03ce24..cc6376a 100644 --- a/fixtures/quoted.env +++ b/fixtures/quoted.env @@ -6,3 +6,4 @@ OPTION_E="1" OPTION_F="2" OPTION_G="" OPTION_H="\n" +OPTION_I = "echo 'asd'" diff --git a/godotenv_test.go b/godotenv_test.go index 91f4363..fc4f7f0 100644 --- a/godotenv_test.go +++ b/godotenv_test.go @@ -187,6 +187,7 @@ func TestLoadQuotedEnv(t *testing.T) { "OPTION_F": "2", "OPTION_G": "", "OPTION_H": "\n", + "OPTION_I": "echo 'asd'", } loadEnvAndCompareValues(t, Load, envFileName, expectedValues, noopPresets)