1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00

Apparently :file_path is now a relative path

Hardcoding this path isn't exactly pretty, but it's the best I could come up with it.

Conflicts:

	spec/rspec/features_spec.rb
This commit is contained in:
Jonas Nicklas 2012-07-10 10:21:23 +02:00 committed by Jo Liss
parent e46918e162
commit 471242570f

View file

@ -3,7 +3,7 @@ require 'capybara/rspec'
Capybara.app = TestApp
RSpec.configuration.before(:each, :example_group => {:file_path => __FILE__}) do
RSpec.configuration.before(:each, :example_group => {:file_path => "./spec/rspec/features_spec.rb"}) do
@in_filtered_hook = true
end