def test_concat(): """Test RawFIF concatenation""" # we trim the file to save lots of memory and some time tempdir = _TempDir() raw = read_raw_fif(test_fif_fname) raw.crop(0, 2., copy=False) test_name = op.join(tempdir, 'test_raw.fif') raw.save(test_name) # now run the standard test _test_concat(read_raw_fif, test_name)
def test_concat(): """Test EDF concatenation """ _test_concat(read_raw_kit, sqd_path)
def test_concat(): """Test EDF concatenation""" _test_concat(read_raw_edf, bdf_path)
def test_concat(): """Test RawFIF concatenation""" _test_concat(read_raw_fif, test_fif_fname)