Reenable skipped RunnerClient tests

I think these were skipped erroneously or perhaps whatever the problem
was has since been resolved.
This commit is contained in:
Seth House 2017-02-17 18:01:15 -07:00
parent 27f7fd9ad4
commit ec377ab379

View file

@ -5,7 +5,6 @@ from __future__ import absolute_import
# Import Salt Testing libs
import integration
from salttesting import skipIf
# Import Salt libs
import salt.runner
@ -57,7 +56,6 @@ class RunnerModuleTest(integration.TestCase, integration.AdaptedConfigurationTes
'token': token['token'],
})
@skipIf(True, 'to be reenabled when #23623 is merged')
def test_cmd_sync(self):
low = {
'client': 'runner',
@ -76,7 +74,6 @@ class RunnerModuleTest(integration.TestCase, integration.AdaptedConfigurationTes
self.runner.cmd_async(low)
@skipIf(True, 'to be reenabled when #23623 is merged')
def test_cmd_sync_w_arg(self):
low = {
'fun': 'test.arg',
@ -89,7 +86,6 @@ class RunnerModuleTest(integration.TestCase, integration.AdaptedConfigurationTes
self.assertEqual(ret['kwargs']['foo'], 'Foo!')
self.assertEqual(ret['kwargs']['bar'], 'Bar!')
@skipIf(True, 'to be reenabled when #23623 is merged')
def test_wildcard_auth(self):
low = {
'username': 'the_s0und_of_t3ch',