(self)
| 868 | self.assertEqual({'EXECUTION_ID': '123'}, env_variables) |
| 869 | |
| 870 | def test_explicit_env_var(self): |
| 871 | name_param = create_parameter_model('name', env_var='My_Name') |
| 872 | env_variables = _build_env_variables({'name': 'UserX'}, [name_param], 123) |
| 873 | |
| 874 | self.assertEqual({'My_Name': 'UserX', 'EXECUTION_ID': '123'}, env_variables) |
| 875 | |
| 876 | def test_replace_characters(self): |
| 877 | name_param = create_parameter_model('Мой параметер 1!') |
nothing calls this directly
no test coverage detected