Skip to content

Commit 646c9b5

Browse files
Add tests
1 parent e41d79e commit 646c9b5

File tree

6 files changed

+18
-0
lines changed

6 files changed

+18
-0
lines changed

python/ql/test/library-tests/frameworks/phoenixdb/ConceptsTest.expected

Whitespace-only changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import python
2+
import experimental.meta.ConceptsTest
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import phoenixdb
2+
import phoenixdb.cursor
3+
4+
database_url = 'http://localhost:8765/'
5+
conn = phoenixdb.connect(database_url, autocommit=True)
6+
7+
cursor = conn.cursor()
8+
cursor.execute("some sql") # $ getSql="some sql"

python/ql/test/library-tests/frameworks/pyodbc/ConceptsTest.expected

Whitespace-only changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import python
2+
import experimental.meta.ConceptsTest
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import pyodbc
2+
3+
cnxn = pyodbc.connect('DSN=test;PWD=password')
4+
5+
cursor = cnxn.cursor()
6+
cursor.execute("some sql") # $ getSql="some sql"

0 commit comments

Comments
 (0)