1. 28 11月, 2013 2 次提交
  2. 27 11月, 2013 3 次提交
  3. 26 11月, 2013 11 次提交
  4. 25 11月, 2013 2 次提交
  5. 23 11月, 2013 3 次提交
  6. 22 11月, 2013 3 次提交
  7. 21 11月, 2013 11 次提交
  8. 20 11月, 2013 5 次提交
    • R
      Merge pull request #948 from kylazhang/snapshot-branch · d0ad8e0a
      Rudá Moura 提交于
      Virsh Snapshot-edit test
      d0ad8e0a
    • C
      virt: Codespell cleanup · 63ba324f
      Chris Evich 提交于
      Signed-off-by: NChris Evich <cevich@redhat.com>
      63ba324f
    • C
      virt-libvirt: Fix interface XML driver · 1d6427f8
      Chris Evich 提交于
      Fix duplication of 'type_name' property from base-class. In other
      words, ``libvirt_xml/devices/base.py`` defines ``TypedDeviceBase``
      which already handles setting up methods for ``get_type_name(),
      set_type_name(), del_type_name()`` to work on device elements
      ``<device_name type='foobar'>``.  So there's no point in having a
      subclass re-define accessor methods for the same ``type`` attribute.
      Worse, it's using a python built-in (``type``) which encourages other
      bad names down the stack.  I searched high and low for any usage of this
      ``type`` attribute and any calls to instance methods ``get_type(),
      set_type(), and del_type()``  but found none.
      Signed-off-by: NChris Evich <cevich@redhat.com>
      1d6427f8
    • C
      virt: Mass Unittests shared-state cleanup · dffe4d32
      Chris Evich 提交于
      Identified four unittests which were incorrectly
      sharing state internally and externally.  In most
      cases the fixes were simple: isolate test state
      for every test via setup().  In the case of tests
      needing to mock virsh functions, I took the extra
      precautionary step of forcing them to first over-ride
      ALL virsh functions/methods with an exception.
      This way, any functions that should be mocked in
      unittests but are not, will be immediatly clear :)
      Signed-off-by: NChris Evich <cevich@redhat.com>
      dffe4d32
    • C
      virt: Add common to all entry ponts · 3ed314ce
      Chris Evich 提交于
      All entry points must import the common module.
      Signed-off-by: NChris Evich <cevich@redhat.com>
      3ed314ce