def test_v0(self): self.assertEqual( migrate_params({ 'extract': True, 'colnames': 'A,B,C', 'type_format': 0, 'type_extract': 0, 'type_replace': 1, }), { 'extract': True, 'colnames': ['A', 'B', 'C'], 'input_number_type': 'any', 'input_locale': 'us', 'error_means_null': True, 'output_format': '{:,}', })
def test_v2(self): self.assertEqual( migrate_params({ 'extract': False, 'colnames': ['A', 'B', 'C'], 'input_number_type': 'float', 'input_locale': 'us', 'error_means_null': False, 'output_format': '{:,}', }), { 'extract': False, 'colnames': ['A', 'B', 'C'], 'input_number_type': 'float', 'input_locale': 'us', 'error_means_null': False, 'output_format': '{:,}', })
def test_v0(self): self.assertEqual( migrate_params({ "extract": True, "colnames": "A,B,C", "type_format": 0, "type_extract": 0, "type_replace": 1, }), { "extract": True, "colnames": ["A", "B", "C"], "input_number_type": "any", "input_locale": "us", "error_means_null": True, "output_format": "{:,}", }, )
def test_v2(self): self.assertEqual( migrate_params({ "extract": False, "colnames": ["A", "B", "C"], "input_number_type": "float", "input_locale": "us", "error_means_null": False, "output_format": "{:,}", }), { "extract": False, "colnames": ["A", "B", "C"], "input_number_type": "float", "input_locale": "us", "error_means_null": False, "output_format": "{:,}", }, )