We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
How can we run a single minitest in rails.
test "can view resource" do ... end
becomes the following under the hood in rails:
def tets_can_view_resource ... end
using bin/rake test {relative_path} {regex} doesn't account for this conversion. Any ideas?
bin/rake test {relative_path} {regex}