jkutner / guard-jruby-rspec

RSpec on JRuby without the startup cost.
MIT License
62 stars 16 forks source link

RSpec.configure blocks not re-run? #20

Closed doxavore closed 11 years ago

doxavore commented 11 years ago

It doesn't seem after the first test run that my included helpers are available. I've tried working around this but I think I'm going about it wrong - is there a reason RSpec.configure blocks should even need to re-run in order for the helpers to be available? Using the latest of everything.

RSpec.configure do |config|
  # Everything in MyHelpers isn't available after the first run
  config.include MyHelpers
end
doxavore commented 11 years ago

On further inspection, looks like this is the same issue as #19.