(self)
| 136 | |
| 137 | class deduping_and_chaining: |
| 138 | def chaining_is_depth_first(self): |
| 139 | expect( |
| 140 | "-c depth_first deploy", |
| 141 | out=""" |
| 142 | Cleaning HTML |
| 143 | Cleaning .tar.gz files |
| 144 | Cleaned everything |
| 145 | Making directories |
| 146 | Building |
| 147 | Deploying |
| 148 | Preparing for testing |
| 149 | Testing |
| 150 | """.lstrip(), |
| 151 | ) |
| 152 | |
| 153 | def _expect(self, args, expected): |
| 154 | expect("-c integration {}".format(args), out=expected.lstrip()) |