mekosotto commited on
Commit
0ccd9ad
·
1 Parent(s): 66d1da2

test(agents/routing): assert sites_csv key on NIfTI route (depth parity with EEG test)

Browse files
Files changed (1) hide show
  1. tests/agents/test_routing.py +1 -0
tests/agents/test_routing.py CHANGED
@@ -24,6 +24,7 @@ class TestRoutePipelineInput:
24
  name, args = route_pipeline_input("data/raw/subjects/subject_0.nii.gz")
25
  assert name == "run_mri_pipeline"
26
  assert args["input_dir"] == "data/raw/subjects"
 
27
 
28
  def test_existing_local_dir_without_slash_routes_to_mri(
29
  self, tmp_path: Path, monkeypatch: pytest.MonkeyPatch
 
24
  name, args = route_pipeline_input("data/raw/subjects/subject_0.nii.gz")
25
  assert name == "run_mri_pipeline"
26
  assert args["input_dir"] == "data/raw/subjects"
27
+ assert "sites_csv" in args
28
 
29
  def test_existing_local_dir_without_slash_routes_to_mri(
30
  self, tmp_path: Path, monkeypatch: pytest.MonkeyPatch