Skip to content

Commit

Permalink
add extra spaces test
Browse files Browse the repository at this point in the history
  • Loading branch information
briangu committed Dec 9, 2023
1 parent 386dd17 commit c181662
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_extra_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ 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_extra_spaces(self):
klong = KlongInterpreter()
r = klong("a::{ 1 + 1 };a()")
self.assertEqual(r, 2)

def test_power_type(self):
klong = KlongInterpreter()
r = klong("2^3")
Expand Down

0 comments on commit c181662

Please sign in to comment.