(self)
| 311 | self.assertEqual(['--flag'], args_string) |
| 312 | |
| 313 | def test_parameter_constant(self): |
| 314 | parameter = create_script_param_config('p1', constant=True, default='const') |
| 315 | config = create_config_model('config_x', parameters=[parameter]) |
| 316 | |
| 317 | args_string = self.build_command_args({'p1': 'value'}, config) |
| 318 | |
| 319 | self.assertEqual(['const'], args_string) |
| 320 | |
| 321 | def test_parameter_int(self): |
| 322 | parameter = create_script_param_config('p1', param='-p1', type='int') |
nothing calls this directly
no test coverage detected