mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 17:50:20 +00:00
10 lines
231 B
Python
10 lines
231 B
Python
import pytest
|
|
|
|
pytestmark = [pytest.mark.windows_whitelisted]
|
|
|
|
|
|
@pytest.mark.slow_test
|
|
def test_sync_grains(salt_call_cli):
|
|
ret = salt_call_cli.run("saltutil.sync_grains")
|
|
assert ret.exitcode == 0
|
|
assert ret.json == []
|