mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
14 lines
334 B
Python
14 lines
334 B
Python
def test_salt_api(api_request):
|
|
"""
|
|
Test running a command against the salt api
|
|
"""
|
|
ret = api_request.post(
|
|
"/run",
|
|
data={
|
|
"client": "local",
|
|
"tgt": "*",
|
|
"fun": "test.arg",
|
|
"arg": ["foo", "bar"],
|
|
},
|
|
)
|
|
assert ret["args"] == ["foo", "bar"]
|