mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
Add disabled decorator
This commit is contained in:
parent
b04229430c
commit
6ae27945fd
@ -9,7 +9,6 @@ import random
|
||||
import string
|
||||
|
||||
# Import Salt Testing libs
|
||||
from unittest import skip
|
||||
from salttesting.helpers import ensure_in_syspath, destructiveTest
|
||||
from salt.ext.six.moves import range
|
||||
ensure_in_syspath('../../')
|
||||
@ -19,6 +18,12 @@ import integration
|
||||
import salt.utils
|
||||
|
||||
|
||||
def disabled(f):
|
||||
def _decorator():
|
||||
print '{0} has been disabled'.format(f.__name__)
|
||||
return _decorator
|
||||
|
||||
|
||||
def __random_string(size=6):
|
||||
'''
|
||||
Generates a random username
|
||||
@ -177,7 +182,7 @@ class MacSystemModuleTest(integration.ModuleCase):
|
||||
'Invalid value passed for path.',
|
||||
self.run_function('system.set_startup_disk', ['spongebob']))
|
||||
|
||||
@skip
|
||||
@disabled
|
||||
def test_get_set_restart_delay(self):
|
||||
'''
|
||||
Test system.get_restart_delay
|
||||
@ -236,7 +241,7 @@ class MacSystemModuleTest(integration.ModuleCase):
|
||||
self.run_function('system.set_disable_keyboard_on_lock',
|
||||
['spongebob']))
|
||||
|
||||
@skip
|
||||
@disabled
|
||||
def test_get_set_boot_arch(self):
|
||||
'''
|
||||
Test system.get_boot_arch
|
||||
|
Loading…
Reference in New Issue
Block a user