adding a test case for issue 309, interpolations with implicit calls.

This commit is contained in:
Jeremy Ashkenas 2010-04-11 09:37:48 -04:00
parent 2e842f0146
commit c3bbb48041
1 changed files with 5 additions and 0 deletions

View File

@ -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'