We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I've been bouncing the idea around in my head on a potential new API. It would look something like this:
@fixtures [:foo, :bar] test "some test", context do fixtures.foo # foo's fixtures are here fixtures.bar # bar's fixtures are here end
This would also allow for setting certain flag:
@fixtures :foo, virtual: true, %{ people: %{ admin: %{ name: "Thomas" } } }
In addition, when referencing other fixture files in a fixture file:
@fixtures :bar foo model: Foo, repo:Repo do valid do bar fixtures.bar.one end end
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I've been bouncing the idea around in my head on a potential new API. It would look something like this:
This would also allow for setting certain flag:
In addition, when referencing other fixture files in a fixture file:
The text was updated successfully, but these errors were encountered: