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
@test test_reference
A significant problem with the current API is that using @test_reference means we can't do @test_broken @test_reference
@test_reference
@test_broken @test_reference
But we could do that if we made the test_reference function the API, and have it returning true or false rather than doing @test true and error(...).
test_reference
true
false
@test true
error(...)
We can keep the current @test_reference for backwards compatibility, via it just generating the @test test_reference(...).
@test test_reference(...)
The text was updated successfully, but these errors were encountered:
This would also make our tests much cleaner since we will be able to just @test !test_reference(...)
@test !test_reference(...)
Sorry, something went wrong.
this would be closed by #112
No branches or pull requests
A significant problem with the current API is that using
@test_reference
means we can't do@test_broken @test_reference
But we could do that if we made the
test_reference
function the API,and have it returning
true
orfalse
rather than doing@test true
anderror(...)
.We can keep the current
@test_reference
for backwards compatibility, via it just generating the@test test_reference(...)
.The text was updated successfully, but these errors were encountered: