Skip to content

Commit

Permalink
add semicolon bug test
Browse files Browse the repository at this point in the history
  • Loading branch information
briangu committed Dec 4, 2023
1 parent faa3aab commit fb1a4a5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/test_extra_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ class TestExtraCoreSuite(unittest.TestCase):
def assert_eval_cmp(self, a, b, klong=None):
self.assertTrue(eval_cmp(a, b, klong=klong))

@unittest.skip
def test_semicolon_string_arg(self):
klong = KlongInterpreter()
klong('f::{x,y}')
r = klong('f("hello";";")')
self.assertEqual(r, "hello;")

@unittest.skip
def test_wrap_join(self):
klong = KlongInterpreter()
Expand Down

0 comments on commit fb1a4a5

Please sign in to comment.