-
-
Notifications
You must be signed in to change notification settings - Fork 161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make aruba compatible with rspec + capybara #288
Comments
What does this have to do with aruba? Don't those projects need to work it out between themselves? |
Mmmh... It's a little bit more complicated. I started to move all asserts etc. to be I think it's no a problem we can solve, but we can make it worse for users. And btw. I'm involved in |
For Aruba users, we could avoid the problem mixing the RSpec expectations module into a bare object that we then use to do our assertions. e.g.:
I think the less we can pollute the users's namespace the better anyway. |
Good idea, but that would be a breaking change. And it fails for the |
Fixed with 0.9.0 or 0.10.0 |
RSpec::Matchers
andCapybara
both implement the same methods at some extend - e.g.all
,within
. Find a way to work around this problem:Rspec
-guys, rspec/rspec-expectations#820The text was updated successfully, but these errors were encountered: