Skip to content

Commit

Permalink
add test wrap case
Browse files Browse the repository at this point in the history
  • Loading branch information
briangu committed Dec 3, 2023
1 parent 3494963 commit 0c9c683
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/test_extra_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ 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_wrap_join(self):
klong = KlongInterpreter()
klong("q::[3 8]")
r = klong("q[0],q[-1]")
self.assertTrue(kg_equal(r, [3,8]))
r = klong("(q[0],q[-1])")
self.assertTrue(kg_equal(r, [3,8]))

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

0 comments on commit 0c9c683

Please sign in to comment.