mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-06 17:31:01 +01:00
28 lines
No EOL
520 B
Python
28 lines
No EOL
520 B
Python
import unittest
|
|
import shutil
|
|
|
|
class Test(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
#copy the local profiles to the test directory
|
|
shutil.copytree('/etc/apparmor.d/', './profiles/')
|
|
|
|
def test_audit(self):
|
|
pass
|
|
|
|
def test_complain(self):
|
|
pass
|
|
|
|
def test_enforce(self):
|
|
pass
|
|
|
|
def test_disable(self):
|
|
pass
|
|
|
|
def test_autodep(self):
|
|
pass
|
|
|
|
|
|
if __name__ == "__main__":
|
|
#import sys;sys.argv = ['', 'Test.testName']
|
|
unittest.main() |