#coding:utf-8 """ ID: new-database-04 TITLE: New DB - RDB$EXCEPTIONS DESCRIPTION: Check for correct content of RDB$EXCEPTIONS in new database. FBTEST: functional.basic.db.04 """ import pytest from firebird.qa import * db = db_factory() test_script = """ set list on; set count on; -- NB: rdb$exception_name is UNIQUE column. select * from rdb$exceptions order by rdb$exception_name; """ act = isql_act('db', test_script) expected_stdout = """ Records affected: 0 """ @pytest.mark.version('>=3') def test_1(act: Action): act.expected_stdout = expected_stdout act.execute() assert act.clean_stdout == act.clean_expected_stdout