def test_function_call():
    with_some = 5
    params = {"five": "and six"}
    and_var = "varval"

    def function_call(*args, **kwargs):
        return "function retval"

    dsi.d(function_call(with_some, params), "drink", and_var)
Пример #2
0
def test_prints_around_pytest_capture():
    maya = "some value"
    dsi.d(maya)
    some_dict = {
        "maya": "eat stuff",
        "other": [
            "sleep",
            "yawn",
            "fart",
            "fart some more",
        ],
    }
    dsi.j(some_dict)
def test_function_call_and_args():
    one = "is one"
    params = ["arg1", "arg2", "arg3"]
    other_params = ["oth1", "oth2", "oth3"]
    last = "is last"
    dsi.d(one, *params, *other_params, last)

    def function_call(*args, **kwargs):
        return "function retval"

    dsi.d(function_call(one, "farg"), *params, "drink", last)
    dsi.d(function_call(one, "farg"), *params, "drink", *other_params, last)
def test_list():
    dsi.d(["how", "areya", "there", "areyou"], "okay then")
def test_dict():
    dsi.d({"how": "areya", "there": "areyou"}, "okay then")
def test_regular_args_multiple():
    one = "is one"
    params = ["arg1", "arg2", "arg3"]
    other_params = ["oth1", "oth2", "oth3"]
    last = "is last"
    dsi.d(one, *params, *other_params, last)
def test_regular_args_mid():
    one = "is one"
    params = ["arg1", "arg2", "arg3"]
    last = "is last"
    dsi.d(one, *params, last)
def test_regular_args_last():
    one = "is one"
    params = ["arg1", "arg2", "arg3"]
    dsi.d(one, *params)
def test_regular_args_first():
    params = ["arg1", "arg2", "arg3"]
    last = "is last"
    dsi.d(*params, last)
def test_regular_args_only():
    params = ["arg1", "arg2", "arg3"]
    dsi.d(*params)