Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions tests/integration/test_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,20 +231,6 @@ def test_list(self):
for input in input_list:
self.assertTrue(input.name is not None)

@pytest.mark.app
def test_lists_modular_inputs(self):
# Install modular inputs to list, and restart
# so they'll show up.
self.install_app_from_collection("modular_inputs")
self.uncheckedRestartSplunk()

inputs = self.service.inputs
if ("abcd", "test2") not in inputs:
inputs.create("abcd", "test2", field1="boris")

input = inputs["abcd", "test2"]
self.assertEqual(input.field1, "boris")

def test_create(self):
inputs = self.service.inputs
for entity in self._test_entities.values():
Expand Down
56 changes: 0 additions & 56 deletions tests/integration/test_modular_input.py

This file was deleted.

7 changes: 7 additions & 0 deletions tests/integration/test_modular_input_kinds.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,13 @@ def test_list_modular_inputs(self):
# Not implemented before 5.0
return

inputs = self.service.inputs
if ("abcd", "test2") not in inputs:
inputs.create("abcd", "test2", field1="boris")

input = inputs["abcd", "test2"]
self.assertEqual(input.field1, "boris")

for m in self.service.modular_input_kinds:
self.check_modular_input_kind(m)

Expand Down