def test_get_dates_with_data(self): # Initial data omip_data = OmipData(get_file_path("omip_data_1.csv")) dates_antes = omip_data.get_dates_with_data("Q2-18") d1 = dt.datetime(2017, 10, 1) # 01/10/2017 d2 = dt.datetime(2017, 10, 2) # 02/10/2017 self.assertEqual(dates_antes, (d1, d2)) #, d3)) '''
def test_get_dates_with_data_para_producto_sin_datos(self): # Initial data omip_data = OmipData(get_file_path("omip_data_1.csv")) dates_Q4 = omip_data.get_dates_with_data("Q4-19") self.assertEqual(dates_Q4, ()) # No hay datos
def test_raise_error_si_get_dates_with_data_para_producto_inexistente( self): with self.assertRaises(ValueError): omip_data = OmipData(get_file_path("omip_data_1.csv")) omip_data.get_dates_with_data("producto que no existe")