Add test for /* multi line */ comment, refs #1860

pull/1839/head
Simon Willison 2022-10-27 11:50:54 -07:00
rodzic 5f6be3c48b
commit d2ca13b699
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -174,6 +174,7 @@ def test_validate_sql_select_bad(bad_sql):
" /* comment */\nselect 1",
" /* comment */select 1",
"/* comment */\n -- another\n /* one more */ select 1",
"/* This comment \n has multiple lines */\nselect 1",
],
)
def test_validate_sql_select_good(good_sql):