Home / Function/ test_path_params_delete() — anthropic-sdk-python Function Reference

test_path_params_delete() — anthropic-sdk-python Function Reference

Architecture documentation for the test_path_params_delete() function in test_versions.py from the anthropic-sdk-python codebase.

Entity Profile

Dependency Diagram

graph TD
  c3153901_9213_6af9_d510_8a0ac174c8f9["test_path_params_delete()"]
  8d6018b4_2166_d04a_c2de_f79f902ac164["TestVersions"]
  c3153901_9213_6af9_d510_8a0ac174c8f9 -->|defined in| 8d6018b4_2166_d04a_c2de_f79f902ac164
  64c4085d_fa53_31de_eab4_5da62392dcdc["test_path_params_delete()"]
  64c4085d_fa53_31de_eab4_5da62392dcdc -->|calls| c3153901_9213_6af9_d510_8a0ac174c8f9
  64c4085d_fa53_31de_eab4_5da62392dcdc["test_path_params_delete()"]
  c3153901_9213_6af9_d510_8a0ac174c8f9 -->|calls| 64c4085d_fa53_31de_eab4_5da62392dcdc
  style c3153901_9213_6af9_d510_8a0ac174c8f9 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

tests/api_resources/beta/skills/test_versions.py lines 227–238

    def test_path_params_delete(self, client: Anthropic) -> None:
        with pytest.raises(ValueError, match=r"Expected a non-empty value for `skill_id` but received ''"):
            client.beta.skills.versions.with_raw_response.delete(
                version="version",
                skill_id="",
            )

        with pytest.raises(ValueError, match=r"Expected a non-empty value for `version` but received ''"):
            client.beta.skills.versions.with_raw_response.delete(
                version="",
                skill_id="skill_id",
            )

Subdomains

Frequently Asked Questions

What does test_path_params_delete() do?
test_path_params_delete() is a function in the anthropic-sdk-python codebase, defined in tests/api_resources/beta/skills/test_versions.py.
Where is test_path_params_delete() defined?
test_path_params_delete() is defined in tests/api_resources/beta/skills/test_versions.py at line 227.
What does test_path_params_delete() call?
test_path_params_delete() calls 1 function(s): test_path_params_delete.
What calls test_path_params_delete()?
test_path_params_delete() is called by 1 function(s): test_path_params_delete.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free