コード例 #1
0
 def test_add_gateway_router(self):
     """
     Test if it adds an external network gateway to the specified router
     """
     self.assertTrue(
         neutron.add_gateway_router("Salt", "SALTSTACK", profile="openstack1")
     )
コード例 #2
0
 def test_add_gateway_router(self, mock):
     '''
     Test if it adds an external network gateway to the specified router
     '''
     self.assertTrue(
         neutron.add_gateway_router('Salt',
                                    'SALTSTACK',
                                    profile='openstack1'))
コード例 #3
0
ファイル: neutron_test.py プロジェクト: bryson/salt
 def test_add_gateway_router(self, mock):
     """
     Test if it adds an external network gateway to the specified router
     """
     self.assertTrue(neutron.add_gateway_router("Salt", "SALTSTACK", profile="openstack1"))
コード例 #4
0
ファイル: neutron_test.py プロジェクト: dmyerscough/salt
 def test_add_gateway_router(self, mock):
     '''
     Test if it adds an external network gateway to the specified router
     '''
     self.assertTrue(neutron.add_gateway_router
                     ('Salt', 'SALTSTACK', profile='openstack1'))