#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_1(act_1: Action): act_1.execute()