~ubuntu-branches/ubuntu/vivid/neutron/vivid

« back to all changes in this revision

Viewing changes to neutron/tests/unit/ml2/test_mech_openvswitch.py

  • Committer: Package Import Robot
  • Author(s): Corey Bryant, Corey Bryant, James Page
  • Date: 2015-02-16 09:59:01 UTC
  • mfrom: (1.1.20)
  • Revision ID: package-import@ubuntu.com-20150216095901-irf6gdwh5tzmfi73
Tags: 1:2015.1~b2-0ubuntu1
[ Corey Bryant ]
* New upstream release.
  - d/control: Align with upstream dependencies.
  - d/p/disable-udev-tests.patch: Rebased.
  - d/p/pep-0476.patch: Dropped. Fixed upstream.

[ James Page ]
* d/neutron-common.install: Drop fwaas_driver.ini and vpnaas.filters, will
  provided by driver specific packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
                   'tunnel_types': BAD_TUNNEL_TYPES}
39
39
 
40
40
    AGENTS = [{'alive': True,
41
 
               'configurations': GOOD_CONFIGS}]
 
41
               'configurations': GOOD_CONFIGS,
 
42
               'host': 'host'}]
42
43
    AGENTS_DEAD = [{'alive': False,
43
 
                    'configurations': GOOD_CONFIGS}]
 
44
                    'configurations': GOOD_CONFIGS,
 
45
                    'host': 'dead_host'}]
44
46
    AGENTS_BAD = [{'alive': False,
45
 
                   'configurations': GOOD_CONFIGS},
 
47
                   'configurations': GOOD_CONFIGS,
 
48
                   'host': 'bad_host_1'},
46
49
                  {'alive': True,
47
 
                   'configurations': BAD_CONFIGS}]
 
50
                   'configurations': BAD_CONFIGS,
 
51
                   'host': 'bad_host_2'}]
48
52
 
49
53
    def setUp(self):
50
54
        super(OpenvswitchMechanismBaseTestCase, self).setUp()