mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-23 05:53:06 +01:00
35 lines
622 B
Python
35 lines
622 B
Python
|
#coding:utf-8
|
||
|
#
|
||
|
# id: bugs.core_0000
|
||
|
# title: Dummy test
|
||
|
# decription:
|
||
|
#
|
||
|
# tracker_id: CORE-0000
|
||
|
# min_versions: ['4.0']
|
||
|
# versions: 4.0
|
||
|
# qmid: None
|
||
|
|
||
|
import pytest
|
||
|
from firebird.qa import db_factory, isql_act, Action
|
||
|
|
||
|
# version: 4.0
|
||
|
# resources: None
|
||
|
|
||
|
substitutions_1 = []
|
||
|
|
||
|
init_script_1 = """"""
|
||
|
|
||
|
db_1 = db_factory(sql_dialect=3, init=init_script_1)
|
||
|
|
||
|
test_script_1 = """
|
||
|
recreate table t1(id int);
|
||
|
"""
|
||
|
|
||
|
act_1 = isql_act('db_1', test_script_1, substitutions=substitutions_1)
|
||
|
|
||
|
|
||
|
@pytest.mark.version('>=4.0')
|
||
|
def test_core_0000_1(act_1: Action):
|
||
|
act_1.execute()
|
||
|
|