Ask for Help
“Why do I see ‘empty test suite’ appear in RSpec output when running focus tests in RubyMine?”
This behavior has been seen by others, but no one had an answer. A support ticket exists. vote it up
Interesting Things
- Git-flow got praise as a simplified, better way of managing Git branches. more info.
- Sinatra’s default setup causes problems with some RSpec matchers. Sinatra will stop exceptions and turn them in stack traces; this will cause RSpec matchers like ‘should_raise’ to misbehave. A solution is to add the lines below into Sinatra::Base when in test.
Class MyApp < Sinatra::Base enable :raise_errors disable :show_exceptions end