예제 #1
0
def test_get_model_description_returns_description(controller: layabase.CRUDController):
    assert {
        "key": "key",
        "mandatory": "mandatory",
        "optional": "optional",
        "collection": "test",
    } == controller.get_model_description()
def test_get_model_description_returns_description(
        controller: layabase.CRUDController):
    assert controller.get_model_description() == {
        "key": "key",
        "mandatory": "mandatory",
        "optional": "optional",
        "schema": "schema_name",
        "table": "test",
    }