mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
7 lines
121 B
Python
7 lines
121 B
Python
# -*- coding: utf-8 -*-
|
|
import pytest
|
|
|
|
|
|
def test_ping(host):
|
|
with host.sudo():
|
|
assert host.salt('test.ping')
|