Yaml style bro.

This commit is contained in:
John Barton (joho)
2013-07-30 18:34:51 +10:00
parent b10c02f9b0
commit 4a2748eb3c
2 changed files with 14 additions and 0 deletions

View File

@ -63,4 +63,8 @@ func TestParsing(t *testing.T) {
// parses escaped double quotes
parseAndCompare(t, "FOO=escaped\\\"bar\"", "FOO", "escaped\"bar")
// parses yaml style options
parseAndCompare(t, "OPTION_A: 1", "OPTION_A", "1")
}