~cjohnston/helipad/ci-remove-future-urls

« back to all changes in this revision

Viewing changes to tests/unit/test_jenkins_build_import.py

  • Committer: Tarmac
  • Author(s): Allan LeSage
  • Date: 2013-08-07 23:49:13 UTC
  • mfrom: (36.1.5 kill-jenkinsrun)
  • Revision ID: tarmac-20130807234913-0t1u14nyzq1lyhl4
Eliminate JenkinsRun.

Approved by PS Jenkins bot, Chris Johnston.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
    def setUp(self):
47
47
        super(TestCreateFromUrl, self).setUp()
48
 
        self.create_downstream_runs_patch = patch(
49
 
            'ci.util.jenkins_build.create_downstream_runs')
50
 
        self.create_downstream_runs_patch.start()
51
48
        self.create_downstream_builds_patch = patch(
52
49
            'ci.util.jenkins_build.create_downstream_builds')
53
50
        self.create_downstream_builds_patch.start()
65
62
        self.aggregate_test_report_patch.start()
66
63
 
67
64
    def tearDown(self):
68
 
        self.create_downstream_runs_patch.stop()
69
65
        self.create_downstream_builds_patch.stop()
70
66
        self.create_cobertura_report_patch.stop()
71
67
        self.create_jenkins_test_report_patch.stop()