mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-08-25 03:27:15 +00:00
28 lines
520 B
Python
28 lines
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()
|