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
Here we skip running expectations when request content is empty:
mumukit/lib/mumukit/server/test_server.rb
Line 109 in 6559512
But this causes conflicts with requests where content is interpolated into the extra. A request like the following:
content:
def foo puts 'printing to console!' end
extra:
class Bar #...content...# end
will come back with no smells as extra "swallows" content, which leaves it empty for the aforementioned check.
Maybe we could run these checks before interpolations?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Here we skip running expectations when request content is empty:
mumukit/lib/mumukit/server/test_server.rb
Line 109 in 6559512
But this causes conflicts with requests where content is interpolated into the extra. A request like the following:
content:
extra:
will come back with no smells as extra "swallows" content, which leaves it empty for the aforementioned check.
Maybe we could run these checks before interpolations?
The text was updated successfully, but these errors were encountered: