You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 23, 2020. It is now read-only.
When using the --use rspec flag, I get the following error on just about every test case once:
1) Pair#flip! reverses the pair's values in place
Failure/Error: expect(pair.right).to eq 1
NoMethodError:
undefined method `expect' for #<RSpec::ExampleGroups::Pair::Flip_2:0x007fcd58a3e260>
Did you mean? exec
# ./spec/pair_spec.rb:43:in `block (3 levels) in <top (required)>'
The spec for this particular one is:
describePairdo
...
describe'#flip!'doit"reverses the pair's values in place"dopair=Pair.new(1,2)pair.flip!expect(pair.right).toeq1expect(pair.left).toeq2endend...
end
The text was updated successfully, but these errors were encountered:
When using the
--use rspec
flag, I get the following error on just about every test case once:The spec for this particular one is:
The text was updated successfully, but these errors were encountered: