diff options
Diffstat (limited to 'src/unit/taf.unit')
-rw-r--r-- | src/unit/taf.unit | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/unit/taf.unit b/src/unit/taf.unit index eeddd53..a9329fe 100644 --- a/src/unit/taf.unit +++ b/src/unit/taf.unit | |||
@@ -109,3 +109,13 @@ | |||
109 | // Woot | 109 | // Woot |
110 | } | 110 | } |
111 | } | 111 | } |
112 | |||
113 | {%bypath1} | ||
114 | { | ||
115 | Bu::MemBuf mb("{outer: \"Hello=\" {inner: {final: test=hi} } }"); | ||
116 | Bu::TafReader tr( mb ); | ||
117 | const Bu::TafGroup *g = tr.readGroup(); | ||
118 | unitTest( g->getChildByPath("inner/final")->getProperty("test") == "hi" ); | ||
119 | unitTest( g->getByPath("inner/final/test") == "hi" ); | ||
120 | } | ||
121 | |||