示例#1
0
 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': '{:,}',
         })
示例#2
0
 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': '{:,}',
         })
示例#3
0
 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": "{:,}",
         },
     )
示例#4
0
 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": "{:,}",
         },
     )