[jsinterp] Fix function calls without arguments.
[youtube-dl] / test / test_jsinterp.py
index 63c350b8fa986fc63d70af43a6a0fdcaf5958eed..a9abae5f54406a9e06d67e828bb89efc207a0cf8 100644 (file)
@@ -104,6 +104,13 @@ class TestJSInterpreter(unittest.TestCase):
         }''')
         self.assertEqual(jsi.call_function('x'), [20, 20, 30, 40, 50])
 
+    def test_call(self):
+        jsi = JSInterpreter('''
+        function x() { return 2; }
+        function y(a) { return x() + a; }
+        function z() { return y(3); }
+        ''')
+        self.assertEqual(jsi.call_function('z'), 5)
 
 if __name__ == '__main__':
     unittest.main()