~free.ekanayaka/landscape-client/lucid-1.5.4-0ubuntu0.10.04.0

« back to all changes in this revision

Viewing changes to landscape/tests/test_sysvconfig.py

  • Committer: Bazaar Package Importer
  • Author(s): Free Ekanayaka
  • Date: 2010-06-28 18:07:18 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100628180718-vytyqgbtkiirv5sb
Tags: 1.5.2.1-0ubuntu0.10.04.0
Filter duplicate network interfaces in get_active_interfaces (LP: #597000)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import time
2
 
import os
3
 
 
4
1
from landscape.tests.helpers import LandscapeTest
5
2
 
6
3
from landscape.sysvconfig import SysVConfig, ProcessError
80
77
        sysvconfig = SysVConfig(filename)
81
78
        sysvconfig.stop_landscape()
82
79
 
83
 
    def test_stop_landscape(self):
 
80
    def test_stop_landscape_with_error(self):
84
81
        system = self.mocker.replace("os.system")
85
82
        system("/etc/init.d/landscape-client stop")
86
83
        self.mocker.result(-1)