6
0
mirror of https://github.com/FirebirdSQL/firebird-qa.git synced 2025-01-22 13:33:07 +01:00

Added/Updated tests\functional\shadow\test_create_02.py: Added restriction for FB 6.x: this test now must be skipped since implemented GH-8047 (Wipe out multi-file database support)

This commit is contained in:
pavel-zotov 2024-12-29 11:47:54 +03:00
parent 4d562f94ab
commit 4af274b8e8

View File

@ -2,9 +2,13 @@
""" """
ID: shadow.create-02 ID: shadow.create-02
TITLE: CREATE SHADOW TITLE: CREATE SHADOW: check usage with presense of 'FILE <...>' clause.
DESCRIPTION: DESCRIPTION:
FBTEST: functional.shadow.create_02 NOTES:
[29.12.2024] pzotov
Added restriction for FB 6.x: this test now must be skipped, see:
https://github.com/FirebirdSQL/firebird/commit/f0740d2a3282ed92a87b8e0547139ba8efe61173
("Wipe out multi-file database support (#8047)")
""" """
import pytest import pytest
@ -47,7 +51,7 @@ expected_stdout = """
Records affected: 2 Records affected: 2
""" """
@pytest.mark.version('>=3') @pytest.mark.version('>=3,<6')
def test_1(act: Action): def test_1(act: Action):
act.expected_stdout = expected_stdout act.expected_stdout = expected_stdout
act.execute() act.execute()