Test creating a FunctionCallData.
(self)
| 53 | """Tests for FunctionCallData model.""" |
| 54 | |
| 55 | def test_create(self): |
| 56 | """Test creating a FunctionCallData.""" |
| 57 | fc = FunctionCallData(name="sqrt", arguments='{"x": 18}') |
| 58 | assert fc.name == "sqrt" |
| 59 | assert fc.arguments == '{"x": 18}' |
| 60 | |
| 61 | def test_get_arguments_dict(self): |
| 62 | """Test parsing arguments to dict.""" |
nothing calls this directly
no test coverage detected