~rsalveti/linaro-image-tools/generic-hwpack-oe

« back to all changes in this revision

Viewing changes to linaro_image_tools/tests/fixtures.py

  • Committer: Loïc Minier
  • Date: 2012-06-08 08:23:11 UTC
  • mfrom: (523.1.14 pep8-fixes)
  • Revision ID: loic.minier@linaro.org-20120608082311-7zp7ohswi8crydz9
Merge lp:~lool/linaro-image-tools/pep8-fixes; PEP8 test and compliance fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
    def stdin(self):
106
106
        return StringIO()
107
107
 
 
108
 
108
109
class MockCmdRunnerPopenFixture(MockSomethingFixture):
109
110
    """A test fixture which mocks cmd_runner.do_run with the given mock.
110
111
 
121
122
            raise AssertionError(
122
123
                "You should call wait() or communicate() to ensure "
123
124
                "the subprocess is finished before proceeding.")
124