moxley / atom-ruby-test

Run Ruby tests, Rspec examples, and Cucumber features from Atom
MIT License
43 stars 36 forks source link

How can it run single rails minitest? #85

Closed brancusi closed 8 years ago

brancusi commented 8 years ago

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?

brancusi commented 8 years ago

Saw the other comment on this. Using zeus now to run. Works great!

brilnius commented 3 years ago

For those landing on this issue like me, I made a Pull Request attempt (#117) for this annoying limitation