-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chore: Increase Test Coverage #120
Conversation
`delayed_reply` spawns a task which was inhibiting messages from OutboundSpy getting delivered to the correct process. This forwards those messages to the parent process to that they can be used in assertions.
"lib/alice.ex", | ||
"lib/alice/state_backends/redix_pool.ex" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These files are both Supervisors. There is actually a test file for lib/alice.ex
that tests the one function that isn't part of the Supervisor spec.
defp parse_function_doc({_function, _anno, _sig, _doc_content, _meta}, title) do | ||
{title, nil, :hidden} | ||
end | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pretty sure we don't need this fall-through version of the function
Greatly increases test coverage throughout project.