diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-30 10:51:20 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-11-30 10:51:20 -0800 |
commit | 98d730f930f1054afa1dee358a203e2378e5afef (patch) | |
tree | fddf57640a6df256fbe73944be861dfa7fcbe101 /tests/embind/embind_test.js | |
parent | 64b3836a68c51bfe5823bbd0a82050b4a43536ca (diff) | |
parent | e0c208c49395be56aefd37247a8852ef942703c8 (diff) |
Merge pull request #734 from dinibu/incoming
Fixed embind for non-void non-const class methods (with test). Fixes issue #605.
Diffstat (limited to 'tests/embind/embind_test.js')
-rw-r--r-- | tests/embind/embind_test.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/embind/embind_test.js b/tests/embind/embind_test.js index e01f0236..8c61553b 100644 --- a/tests/embind/embind_test.js +++ b/tests/embind/embind_test.js @@ -137,6 +137,8 @@ module({ c.setVal('1234'); assert.equal('1234', c.getVal()); + assert.equal(1239, c.returnIntPlusFive(1234)); + c.delete(); assert.equal(0, cm.count_emval_handles()); }, |