Example #1
0
 def test_v1(self):
     result = formula.migrate_params({
         'syntax': 'python',
         'out_column': 'R',
         'formula_excel': '=A1',
         'formula_python': 'A',
         'all_rows': True,
     })
     self.assertEqual(
         result, {
             'syntax': 'python',
             'out_column': 'R',
             'formula_excel': '=A1',
             'formula_python': 'A',
             'all_rows': True,
         })
Example #2
0
 def test_v1(self):
     result = formula.migrate_params({
         "syntax": "python",
         "out_column": "R",
         "formula_excel": "=A1",
         "formula_python": "A",
         "all_rows": True,
     })
     self.assertEqual(
         result,
         {
             "syntax": "python",
             "out_column": "R",
             "formula_excel": "=A1",
             "formula_python": "A",
             "all_rows": True,
         },
     )