Python: Add tests for PyMySQL

This commit is contained in:
Rasmus Wriedt Larsen
2020-12-14 10:55:01 +01:00
parent 249eea9d2b
commit e7b6400e48
3 changed files with 7 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
import python
import experimental.meta.ConceptsTest

View File

@@ -0,0 +1,5 @@
import pymysql
connection = pymysql.connect(host="localhost", user="user", password="passwd")
cursor = connection.cursor()
cursor.execute("some sql", (42,)) # $ MISSING: getSql="some sql"