Home / Function/ test_encode_model_with_default() — fastapi Function Reference

test_encode_model_with_default() — fastapi Function Reference

Architecture documentation for the test_encode_model_with_default() function in test_jsonable_encoder.py from the fastapi codebase.

Entity Profile

Dependency Diagram

graph TD
  27114c72_59eb_60b1_7580_d19524e19c2c["test_encode_model_with_default()"]
  80ce950d_4c72_e7d9_21bb_a5c60524786c["test_jsonable_encoder.py"]
  27114c72_59eb_60b1_7580_d19524e19c2c -->|defined in| 80ce950d_4c72_e7d9_21bb_a5c60524786c
  1ac1bc37_1a47_e7e2_9156_ab0473094700["jsonable_encoder()"]
  27114c72_59eb_60b1_7580_d19524e19c2c -->|calls| 1ac1bc37_1a47_e7e2_9156_ab0473094700
  style 27114c72_59eb_60b1_7580_d19524e19c2c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

tests/test_jsonable_encoder.py lines 187–202

def test_encode_model_with_default():
    model = ModelWithDefault(foo="foo", bar="bar")
    assert jsonable_encoder(model) == {"foo": "foo", "bar": "bar", "bla": "bla"}
    assert jsonable_encoder(model, exclude_unset=True) == {"foo": "foo", "bar": "bar"}
    assert jsonable_encoder(model, exclude_defaults=True) == {"foo": "foo"}
    assert jsonable_encoder(model, exclude_unset=True, exclude_defaults=True) == {
        "foo": "foo"
    }
    assert jsonable_encoder(model, include={"foo"}) == {"foo": "foo"}
    assert jsonable_encoder(model, exclude={"bla"}) == {"foo": "foo", "bar": "bar"}
    assert jsonable_encoder(model, include={}) == {}
    assert jsonable_encoder(model, exclude={}) == {
        "foo": "foo",
        "bar": "bar",
        "bla": "bla",
    }

Domain

Subdomains

Frequently Asked Questions

What does test_encode_model_with_default() do?
test_encode_model_with_default() is a function in the fastapi codebase, defined in tests/test_jsonable_encoder.py.
Where is test_encode_model_with_default() defined?
test_encode_model_with_default() is defined in tests/test_jsonable_encoder.py at line 187.
What does test_encode_model_with_default() call?
test_encode_model_with_default() calls 1 function(s): jsonable_encoder.

Analyze Your Own Codebase

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

Try Supermodel Free