Rubymine filtering all specs inside describe block with "#"
Examples nested inside a describe whith a name starting with "#" are filtered. If i remove the "#" from the name then example are run
Steps to reproduce :
context 'foo' do
describe '#bar' do
it {expect("bar").to eq("bar")}
end
end
When i right click on the it block and run the spec, i get "All examples were filtered out"
context 'foo' do
describe 'bar' do
it {expect("bar").to eq("bar")}
end
end
When i right click on the it block and run the spec, i get "1 example, 0 failures, 1 passed"
Thanks for your help !
请先登录再写评论。
What version of RubyMine do you use? Looks like the problem was fixed before RubyMine 7.1.4
Yes of course :
Rubymine 8.0
OSX 10.11.1
Ruby 2.2.3
rspec-rails 3.1