~ubuntu-branches/ubuntu/vivid/ironic/vivid-updates

« back to all changes in this revision

Viewing changes to ironic/tests/drivers/test_fake.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2015-03-30 11:14:57 UTC
  • mfrom: (1.2.6)
  • Revision ID: package-import@ubuntu.com-20150330111457-kr4ju3guf22m4vbz
Tags: 2015.1~b3-0ubuntu1
* New upstream release.
  + d/control: 
    - Align with upstream dependencies.
    - Add dh-python to build-dependencies.
    - Add psmisc as a dependency. (LP: #1358820)
  + d/p/fix-requirements.patch: Rediffed.
  + d/ironic-conductor.init.in: Fixed typos in LSB headers,
    thanks to JJ Asghar. (LP: #1429962)

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
        expected = {'boot_device': boot_devices.PXE, 'persistent': False}
109
109
        self.assertEqual(expected,
110
110
                         self.driver.management.get_boot_device(self.task))
 
111
 
 
112
    def test_inspect_interface(self):
 
113
        self.assertEqual({}, self.driver.inspect.get_properties())
 
114
        self.driver.inspect.validate(self.task)
 
115
        self.driver.inspect.inspect_hardware(self.task)