Updating unit tests based on changes to module.

This commit is contained in:
Gareth J. Greenaway 2015-06-04 20:13:36 -07:00
parent 8d7906bce1
commit c95f8be0ae
2 changed files with 2 additions and 2 deletions

View File

@ -65,8 +65,6 @@ def __virtual__():
:return: The virtual name of the module.
'''
if not ENABLED:
return False
return __virtualname__

View File

@ -20,6 +20,8 @@ ensure_in_syspath('../../')
# Import Salt Libs
from salt.modules import random_org
random_org.__opts__ = {}
@skipIf(NO_MOCK, NO_MOCK_REASON)
class RandomOrgTestCase(TestCase):