def test_flux_map_str(wcs_flux_map, reference_model): fluxmap = FluxMaps(wcs_flux_map, reference_model) fm_str = fluxmap.__str__() assert "WcsGeom" in fm_str assert "errn" in fm_str assert "sqrt_ts" in fm_str assert "PowerLawSpectralModel" in fm_str
def test_flux_map_str(wcs_flux_map, reference_model): fluxmap = FluxMaps(wcs_flux_map, reference_model) fm_str = fluxmap.__str__() assert "WcsGeom" in fm_str assert "errn" in fm_str assert "sqrt_ts" in fm_str assert "pl" in fm_str assert "n_sigma" in fm_str assert "n_sigma_ul" in fm_str assert "ts_threshold" in fm_str