MCPcopy Index your code
hub / github.com/bugy/script-server / test_boolean_value

Method test_boolean_value

src/tests/executor_test.py:846–850  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

844 self.assertEqual({'PARAM_ID': '918273', 'EXECUTION_ID': '123'}, env_variables)
845
846 def test_boolean_value(self):
847 verbose_param = create_parameter_model('verbose')
848 env_variables = _build_env_variables({'verbose': True}, [verbose_param], 123)
849
850 self.assertEqual({'PARAM_VERBOSE': 'True', 'EXECUTION_ID': '123'}, env_variables)
851
852 def test_boolean_value_when_false(self):
853 verbose_param = create_parameter_model('verbose')

Callers

nothing calls this directly

Calls 2

create_parameter_modelFunction · 0.90
_build_env_variablesFunction · 0.90

Tested by

no test coverage detected