~ubuntu-branches/ubuntu/quantal/nova/quantal-proposed

« back to all changes in this revision

Viewing changes to nova/tests/api/openstack/test_sharedipgroups.py

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2011-01-21 11:48:06 UTC
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: james.westby@ubuntu.com-20110121114806-v8fvnnl6az4m4ohv
Tags: upstream-2011.1~bzr597
ImportĀ upstreamĀ versionĀ 2011.1~bzr597

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# vim: tabstop=4 shiftwidth=4 softtabstop=4
2
 
 
3
 
# Copyright 2010 OpenStack LLC.
4
 
# All Rights Reserved.
5
 
#
6
 
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
7
 
#    not use this file except in compliance with the License. You may obtain
8
 
#    a copy of the License at
9
 
#
10
 
#         http://www.apache.org/licenses/LICENSE-2.0
11
 
#
12
 
#    Unless required by applicable law or agreed to in writing, software
13
 
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14
 
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15
 
#    License for the specific language governing permissions and limitations
16
 
#    under the License.
17
 
 
18
 
import unittest
19
 
 
20
 
import stubout
21
 
 
22
 
from nova.api.openstack import sharedipgroups
23
 
 
24
 
 
25
 
class SharedIpGroupsTest(unittest.TestCase):
26
 
    def setUp(self):
27
 
        self.stubs = stubout.StubOutForTesting()
28
 
 
29
 
    def tearDown(self):
30
 
        self.stubs.UnsetAll()
31
 
 
32
 
    def test_get_shared_ip_groups(self):
33
 
        pass
34
 
 
35
 
    def test_create_shared_ip_group(self):
36
 
        pass
37
 
 
38
 
    def test_delete_shared_ip_group(self):
39
 
        pass