(mock_init)
| 275 | |
| 276 | |
| 277 | def test_init_raw_inputs_single(mock_init): |
| 278 | |
| 279 | mock_init.set_raw_inputs({"fasta": {"channel": "rawChannel", |
| 280 | "raw_forks": ["A"], |
| 281 | "channel_str": "rawChannel.Channel"}}) |
| 282 | |
| 283 | assert [mock_init.forks, mock_init._context["main_inputs"]] == \ |
| 284 | [["\nrawChannel.set{ A }\n"], "rawChannel.Channel"] |
| 285 | |
| 286 | |
| 287 | def test_init_raw_inputs_multi_forks(mock_init): |
nothing calls this directly
no test coverage detected