Skip to content

Add test(s) for ABCParse.function_kwargs  #3

@mvinyard

Description

@mvinyard

Could look something like this:

import ABCParse
def test_func(arg1, arg2):
    return arg1, arg2

arg1 = "x"
arg2 = "y"

class TestClass:
    def __init__(self, arg1="x", arg2="y", arg3="z"):
        
        self.kw = ABCParse.function_kwargs(func = test_func, kwargs = locals())
        
tc = TestClass()
tc.kw

Metadata

Metadata

Assignees

No one assigned

    Labels

    documentationImprovements or additions to documentationenhancementNew feature or requesttesting

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions