Source code for xinput.tests

from __future__ import print_function

__title__ = 'xinput.tests'
__author__ = 'Artur Barseghyan'
__license__ = 'GPL 2.0/LGPL 2.1'
__copyright__ = 'Copyright 2013-2014 Artur Barseghyan'

import unittest

PRINT_INFO = True


[docs]class XinputTest(unittest.TestCase): """ Tests. """
[docs] def setUp(self): """ Set up. """
@print_info
[docs] def test_01_xinput_operate_command(self): """ Test xinput operate command. """
@print_info
[docs] def test_02_xinput_disable_touchpad_command(self): """ Test xinput disable-touchpad command. """
@print_info
[docs] def test_03_xinput_enable_touchpad_command(self): """ Test xinput enable-touchpad command. """
@print_info
[docs] def test_04_xinput_api(self): """ Test xinput API. """