コード例 #1
0
def unsuspend(**kwargs):
    ret = Host(__salt__, **kwargs)
    return ret.unsuspend()
コード例 #2
0
ファイル: test_nginx.py プロジェクト: jamesalbert/soy
 def test_unsuspend_true(self):
     t = Host(self.__salt__, **self.vars)
     rv = t.unsuspend()
     ok_(rv is True, 'returned %s' % rv)
コード例 #3
0
ファイル: test_nginx.py プロジェクト: jamesalbert/soy
 def test_unsuspend_fail(self):
     t = Host(self.__salt__, **self.vars)
     rv = t.unsuspend()
     ok_(rv is False, 'returned %s' % rv)
コード例 #4
0
ファイル: soy_nginx.py プロジェクト: jamesalbert/soy
def unsuspend(**kwargs):
    ret = Host(__salt__, **kwargs)
    return ret.unsuspend()
コード例 #5
0
ファイル: test_nginx.py プロジェクト: jamesalbert/soy
 def test_unsuspend_true(self):
     t = Host(self.__salt__, **self.vars)
     rv = t.unsuspend()
     ok_(rv is True, 'returned %s' % rv)
コード例 #6
0
ファイル: test_nginx.py プロジェクト: jamesalbert/soy
 def test_unsuspend_fail(self):
     t = Host(self.__salt__, **self.vars)
     rv = t.unsuspend()
     ok_(rv is False, 'returned %s' % rv)