示例#1
0
 def test_baredoc_list_states_args(self):
     """
     Test baredoc state listing with args
     """
     ret = baredoc.list_states()
     assert "value_present" in ret["xml"][0]
     assert "xpath" in ret["xml"][0]["value_present"]
示例#2
0
 def test_baredoc_list_states_single(self):
     """
     Test baredoc state listing single state module
     """
     ret = baredoc.list_states("xml")
     assert "value_present" in ret["xml"][0]
     assert "xpath" in ret["xml"][0]["value_present"]
示例#3
0
 def test_baredoc_list_states(self):
     """
     Test baredoc state module listing
     """
     ret = baredoc.list_states(names_only=True)
     assert "value_present" in ret["xml"][0]