Ejemplo n.º 1
0
 def test_lp_topo_list_with_wrong_upstream(self):
     lp = LinchpinAPI()
     upstream = "www.example.com"
     lp = lp.lp_topo_list(upstream)
Ejemplo n.º 2
0
 def test_lp_topo_list_without_params(self):
     lp = LinchpinAPI()
     lp = lp.lp_topo_list()
     assert_equal(isinstance(lp, list), True)
Ejemplo n.º 3
0
 def test_lp_topo_list_without_params(self):
     lp = LinchpinAPI()
     lp = lp.lp_topo_list()
     assert_equal(isinstance(lp, list), True)
Ejemplo n.º 4
0
 def test_lp_topo_list_with_wrong_upstream(self):
     lp = LinchpinAPI()
     upstream = "www.example.com"
     lp = lp.lp_topo_list(upstream)
Ejemplo n.º 5
0
 def lp_topo_list(self, upstream=None):
     return LinchpinAPI.lp_topo_list(self, upstream)