~ubuntu-branches/ubuntu/trusty/quantum/trusty

« back to all changes in this revision

Viewing changes to quantum/tests/unit/ryu/test_ryu_plugin.py

  • Committer: Package Import Robot
  • Author(s): James Page, Chuck Short, James Page
  • Date: 2013-03-15 09:37:28 UTC
  • mfrom: (2.1.19)
  • Revision ID: package-import@ubuntu.com-20130315093728-frw2n18bm2j4hzv5
Tags: 1:2013.1~rc1-0ubuntu1
[ Chuck Short ]
* debian/patches/fix-quantum-configuration.patch: Refreshed
* debian/control: Add python-testtools and python-fixtures a build-dep.
* debian/control: Drop python-gflags no longer needed.
* debian/control: Drop python-unittest2 no longer needed.

[ James Page ]
* New upstream release candidate.
* d/watch: Update uversionmangle to deal with upstream versioning
  changes, remove tarballs.openstack.org.
* d/rules: Disable PEP-8 tests until fixed upstream.
* d/control,quantum-plugin-midonet.install: Added plugin package for
  Midonet. 
* d/control,quantum-lbaas-*: Added Load Balancing as-a Service agent
  package. 
* d/control: Bumped Standards-Version, no changes.
* d/p/fix-quantum-configuration.patch: Added midonet sqlite path to
  patch, fixed up linuxbridge path. 
* d/p/fix-ubuntu-tests.patch: Re-added skipTest for linuxbridge tests
  that attempt to setup udev monitors.
* d/quantum-metadata-agent.*: Refactor metadata-agent into separate
  package and add Depends from quantum-l3-agent and quantum-dhcp-agent.
* d/quantum-plugin-nicira.install: Add quantum-check-nvp-config binary.
* d/control: Add iputils-arping to quantum-l3-agent Depends (LP: #1153066).
* d/control: python-oslo-config -> python-oslo.config.
* d/control: Bump python-quantumclient >= 1:2.2.0 inline with upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (c) 2012 OpenStack, LLC.
 
1
# Copyright (c) 2012 OpenStack Foundation.
2
2
#
3
3
# Licensed under the Apache License, Version 2.0 (the "License");
4
4
# you may not use this file except in compliance with the License.
27
27
        self.ryu_patcher = fake_ryu.patch_fake_ryu_client()
28
28
        self.ryu_patcher.start()
29
29
        super(RyuPluginV2TestCase, self).setUp(self._plugin_name)
 
30
        self.addCleanup(self.ryu_patcher.stop)
30
31
 
31
32
 
32
33
class TestRyuBasicGet(test_plugin.TestBasicGet, RyuPluginV2TestCase):