diff options
author | Joris | 2016-03-16 21:09:44 +0100 |
---|---|---|
committer | Joris | 2016-03-16 22:09:54 +0100 |
commit | c6c01d7c248bca1078285c4afeaa25493e9974b3 (patch) | |
tree | 7b060664b16ffcae25cb62089dfbeed5a0b7c69a /tests/resources | |
parent | f2dc23683ceae93135223713e4ca7fa3a12edbea (diff) |
Add import expression
Diffstat (limited to 'tests/resources')
-rw-r--r-- | tests/resources/a.conf | 7 | ||||
-rw-r--r-- | tests/resources/b.conf | 6 | ||||
-rw-r--r-- | tests/resources/c.conf | 2 |
3 files changed, 15 insertions, 0 deletions
diff --git a/tests/resources/a.conf b/tests/resources/a.conf new file mode 100644 index 0000000..4a475f1 --- /dev/null +++ b/tests/resources/a.conf @@ -0,0 +1,7 @@ +a = "foo" +b = "bar" +c = "baz" + +import "b.conf" + +e = "re nam" diff --git a/tests/resources/b.conf b/tests/resources/b.conf new file mode 100644 index 0000000..c75a415 --- /dev/null +++ b/tests/resources/b.conf @@ -0,0 +1,6 @@ +import "c.conf" + +b = 15 +c = "re baz" +d = "zap" +e = "nam" diff --git a/tests/resources/c.conf b/tests/resources/c.conf new file mode 100644 index 0000000..c4f1642 --- /dev/null +++ b/tests/resources/c.conf @@ -0,0 +1,2 @@ +f = 8.5 +b = False |