Skip to content

Commit

Permalink
[#110] 테스트케이스 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
myyrakle committed Aug 13, 2024
1 parent 8bc29af commit f4ba608
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/parser/test/ddl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -766,6 +766,12 @@ fn test_handle_drop_table_query() {
expected: Default::default(),
want_error: true,
},
TestCase {
name: "오류: DROP TABLE IF EXISTS".into(),
input: vec![Token::If, Token::Exists],
expected: Default::default(),
want_error: true,
},
TestCase {
name: "오류: 빈 토큰".into(),
input: vec![],
Expand Down

0 comments on commit f4ba608

Please sign in to comment.