export keyword parsing

This commit is contained in:
John Barton (joho)
2013-07-30 18:38:10 +10:00
parent 4a2748eb3c
commit 37c8b8e487
2 changed files with 8 additions and 1 deletions

View File

@ -67,4 +67,7 @@ func TestParsing(t *testing.T) {
// parses yaml style options
parseAndCompare(t, "OPTION_A: 1", "OPTION_A", "1")
// parses export keyword
parseAndCompare(t, "export OPTION_A=2", "OPTION_A", "2")
}