AbsintheGenerator.TestDescribe (absinthe_generator v0.1.2) View Source
We can utilize this module to generate test files which are then used in the mutation & query tests
Definitions
:describe_name
(String.t/0
) - Required. describe block text for the test:setup
(String.t/0
) - setup block for the test:setup_all
(String.t/0
) - setup_all block for the test:tests
(list of non-emptykeyword/0
) - Tests to generate within TestDescribe, followingAbsintheGenerator.TestDescribe.TestEntry
Link to this section Summary
Link to this section Types
Specs
t() :: %AbsintheGenerator.TestDescribe{ describe_name: String.t(), setup: String.t(), setup_all: String.t(), tests: [AbsintheGenerator.TestDescribe.TestEntry.t()] }