mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00

Add query function that accepts XPath queries Add docs and CLI examples for all functions Fix issues with the get_filtered function
15 lines
236 B
Python
15 lines
236 B
Python
import pytest
|
|
|
|
pytestmark = [
|
|
pytest.mark.windows_whitelisted,
|
|
]
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
def win_event(modules):
|
|
return modules.win_event
|
|
|
|
|
|
def test_get(win_event):
|
|
events = win_event.get()
|
|
assert events == {}
|