Created
March 16, 2016 16:08
-
-
Save stajkowski/6e9d48d6ff55756628b2 to your computer and use it in GitHub Desktop.
test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def test_delete_network_exception(self): | |
| tenants = self.tenants.list() | |
| network = self.networks.first() | |
| api.neutron.list_dhcp_agent_hosting_networks(IsA(http.HttpRequest), | |
| network.id).\ | |
| AndReturn(self.agents.list()) | |
| api.neutron.network_ip_availability_show(IsA(http.HttpRequest), | |
| network.id).\ | |
| AndReturn(self.agents.list()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment