mirror of
https://github.com/containers/udica
synced 2026-03-14 19:55:45 +01:00
Fix formatting on all python source code files to follow PEP-8 code style. https://www.python.org/dev/peps/pep-0008/
31 lines
973 B
Python
31 lines
973 B
Python
# Copyright (C) 2019 Jan Zarsky, <jzarsky@redhat.com>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
import unittest
|
|
import os
|
|
import sys
|
|
|
|
import test_main
|
|
|
|
|
|
class TestIntegration(test_main.TestBase):
|
|
"""Test basic functionality of udica"""
|
|
|
|
|
|
if __name__ == "__main__":
|
|
# Very similar to our basic tests, but we don't overwrite the SELinux
|
|
# modules
|
|
unittest.main()
|