19 lines
368 B
Python
19 lines
368 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Schneider Intercom IXC
|
|
======================
|
|
|
|
Test data
|
|
|
|
.. moduleauthor:: Jan Heise <heise@dresearch.de>
|
|
|
|
"""
|
|
__copyright__ = 'Copyright (C) 2015-2022 DResearch Digital Media Systems GmbH'
|
|
__revision__ = ''
|
|
__docformat__ = 'reStructuredText'
|
|
|
|
import os
|
|
|
|
# Defines the directory for the test data
|
|
TEST_DATA_DIR = os.path.dirname(__file__)
|