mirror of
https://github.com/FirebirdSQL/firebird-qa.git
synced 2025-01-23 05:53:06 +01:00
27 lines
665 B
Python
27 lines
665 B
Python
#coding:utf-8
|
|
|
|
"""
|
|
ID: domain.create-22
|
|
FBTEST: functional.domain.create.22
|
|
TITLE: CREATE DOMAIN - NATIONAL CHARACTER
|
|
DESCRIPTION: Simple domain creation based NATIONAL CHARACTER datatype
|
|
"""
|
|
|
|
import pytest
|
|
from firebird.qa import *
|
|
|
|
db = db_factory()
|
|
|
|
test_script = """CREATE DOMAIN test NATIONAL CHARACTER(32767);
|
|
SHOW DOMAIN test;"""
|
|
|
|
act = isql_act('db', test_script)
|
|
|
|
expected_stdout = """TEST CHAR(32767) CHARACTER SET ISO8859_1 Nullable"""
|
|
|
|
@pytest.mark.version('>=3')
|
|
def test_1(act: Action):
|
|
act.expected_stdout = expected_stdout
|
|
act.execute()
|
|
assert act.clean_stdout == act.clean_expected_stdout
|