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?