diff --git a/test/test_string_interpolation.coffee b/test/test_string_interpolation.coffee index b7b8c79c..c1ea542f 100644 --- a/test/test_string_interpolation.coffee +++ b/test/test_string_interpolation.coffee @@ -68,3 +68,8 @@ a: 1 b: 2 c: 3 ok "$a$b$c" is '123' + +result: null +stash: (str) -> result: str +stash "a ${ ('aa').replace /a/g, 'b' } c" +ok result is 'a bb c' \ No newline at end of file