Fix transport defs in test connection plugins.
This commit is contained in:
parent
c67efe0bd1
commit
89afb60999
3 changed files with 0 additions and 9 deletions
|
@ -26,9 +26,6 @@ class Connection(ConnectionBase):
|
|||
|
||||
raise AnsibleError('an error with {{ some Jinja }}')
|
||||
|
||||
def transport(self):
|
||||
pass
|
||||
|
||||
def _connect(self):
|
||||
pass
|
||||
|
||||
|
|
|
@ -25,9 +25,6 @@ class Connection(ConnectionBase):
|
|||
def __init__(self, *args, **kwargs):
|
||||
super(Connection, self).__init__(*args, **kwargs)
|
||||
|
||||
def transport(self):
|
||||
pass
|
||||
|
||||
def _connect(self):
|
||||
pass
|
||||
|
||||
|
|
|
@ -26,9 +26,6 @@ class Connection(ConnectionBase):
|
|||
self._shell_type = 'powershell' # Set a shell type that is not sh
|
||||
super(Connection, self).__init__(*args, **kwargs)
|
||||
|
||||
def transport(self):
|
||||
pass
|
||||
|
||||
def _connect(self):
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in a new issue