~ubuntu-branches/ubuntu/trusty/horizon/trusty-updates

« back to all changes in this revision

Viewing changes to openstack_dashboard/dashboards/project/images_and_snapshots/tests.py

  • Committer: Package Import Robot
  • Author(s): Adam Gandelman
  • Date: 2013-09-06 11:59:43 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20130906115943-h3td0l7tp16mb9oc
Tags: 1:2013.2~b3-0ubuntu1
* New upstream release.
* debian/control: Minimum python-openstack-auth version >= 1.1.1.
* debian/control: Add python-troveclient.
* debian/static: Refresh static assets for 2013.2~b3.
* debian/patches: ubuntu_local_settings.patch -> ubuntu_settings.patch, also
  patch location of secret key in openstack_dashboard/settings.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
#    License for the specific language governing permissions and limitations
20
20
#    under the License.
21
21
 
22
 
from django.core.urlresolvers import reverse
 
22
from django.core.urlresolvers import reverse  # noqa
23
23
from django import http
24
24
 
25
 
from mox import IsA
 
25
from mox import IsA  # noqa
26
26
 
27
27
from openstack_dashboard import api
28
28
from openstack_dashboard.test import helpers as test
36
36
                        api.cinder: ('volume_snapshot_list', 'volume_get')})
37
37
    def test_index(self):
38
38
        images = self.images.list()
39
 
        snapshots = self.snapshots.list()
40
39
        volumes = self.volumes.list()
41
40
 
42
41
        for volume in volumes: