Skip to content

Commit

Permalink
Add test checking for the issue reported in #83
Browse files Browse the repository at this point in the history
  • Loading branch information
henrycatalinismith committed Jun 23, 2014
1 parent d43718a commit 3d6d022
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions tests/TwigJs/Tests/Fixture/integration/tests/method_call.test
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
--TEST--
Method call test for schmittjoh/twig.js#83
--TEMPLATE--

{{ object.getFoo() }}
{{ object.get("attr") }}

--DATA--
{
object: {
getFoo: function() {
return "foo";
},
get: function(name) {
return "foo" + name;
}
}
}
--EXPECT--
foo
fooattr

0 comments on commit 3d6d022

Please sign in to comment.