(self)
| 794 | |
| 795 | class TestBuildEnvVariables(unittest.TestCase): |
| 796 | def test_single_variable(self): |
| 797 | param = create_parameter_model('name') |
| 798 | env_variables = _build_env_variables({'name': 'UserX'}, [param], 123) |
| 799 | |
| 800 | self.assertEqual({'PARAM_NAME': 'UserX', 'EXECUTION_ID': '123'}, env_variables) |
| 801 | |
| 802 | def test_multiple_variables(self): |
| 803 | name_param = create_parameter_model('name') |
nothing calls this directly
no test coverage detected