(process_wchannels)
| 127 | |
| 128 | |
| 129 | def test_channels_setup(process_wchannels): |
| 130 | |
| 131 | process_wchannels.lane = 1 |
| 132 | process_wchannels.set_channels(pid=1) |
| 133 | |
| 134 | expected = {"input_channel": "in_channel", |
| 135 | "output_channel": "out_channel", |
| 136 | "template": process_wchannels.template, |
| 137 | "pid": "1_1", |
| 138 | "forks": ""} |
| 139 | |
| 140 | assert process_wchannels._context == expected |
| 141 | |
| 142 | |
| 143 | def test_channels_setup_withforks(process_wchannels): |
nothing calls this directly
no test coverage detected