コード例 #1
0
 def test_delete_security_group_rule(self, mock):
     '''
     Test if it deletes the specified security group rule
     '''
     self.assertTrue(
         neutron.delete_security_group_rule('SALTSTACK',
                                            profile='openstack1'))
コード例 #2
0
 def test_delete_security_group_rule(self):
     """
     Test if it deletes the specified security group rule
     """
     self.assertTrue(
         neutron.delete_security_group_rule("SALTSTACK", profile="openstack1")
     )
コード例 #3
0
ファイル: neutron_test.py プロジェクト: bryson/salt
 def test_delete_security_group_rule(self, mock):
     """
     Test if it deletes the specified security group rule
     """
     self.assertTrue(neutron.delete_security_group_rule("SALTSTACK", profile="openstack1"))
コード例 #4
0
ファイル: neutron_test.py プロジェクト: dmyerscough/salt
 def test_delete_security_group_rule(self, mock):
     '''
     Test if it deletes the specified security group rule
     '''
     self.assertTrue(neutron.delete_security_group_rule
                     ('SALTSTACK', profile='openstack1'))