Skip to content

Commit

Permalink
Add tests for simply parsing integers.
Browse files Browse the repository at this point in the history
  • Loading branch information
dnwpark committed May 9, 2024
1 parent ebf62f7 commit 339fbe5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/test_sql_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,11 @@ def test_sql_parse_select_59(self):
SELECT TRUE; SELECT FALSE
"""

def test_sql_parse_select_59(self):
"""
SELECT -1; SELECT 0; SELECT 1
"""

def test_sql_parse_insert_00(self):
"""
INSERT INTO my_table (id, name) VALUES (1, 'some')
Expand Down

0 comments on commit 339fbe5

Please sign in to comment.