(self, ifcgit, ifc)
| 175 | |
| 176 | class TestSwitchRevision: |
| 177 | def test_run(self, ifcgit, ifc): |
| 178 | ifc.get_path().should_be_called().will_return("path/to/model.ifc") |
| 179 | ifcgit.switch_to_revision_item().should_be_called() |
| 180 | ifcgit.load_project("path/to/model.ifc").should_be_called() |
| 181 | ifcgit.refresh_revision_list("path/to/model.ifc").should_be_called() |
| 182 | ifcgit.decolourise().should_be_called() |
| 183 | subject.switch_revision(ifcgit, ifc) |
| 184 | |
| 185 | |
| 186 | class TestMergeBranch: |
nothing calls this directly
no test coverage detected