We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hey there, find an example solution here:
https://github.com/rngtng/progchallenge/tree/master/seat-reservations/spec
And another test to refactor: https://github.com/rngtng/progchallenge/blob/master/seat-reservations/spec/test_store_spec.rb
Check http://betterspecs.org for more "best-practices"
Disclamer We used rspec2 notiation, e.g. subject.should == [] future rspec3 way will be expect(subject).to be([])
subject.should == []
expect(subject).to be([])
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey there, find an example solution here:
https://github.com/rngtng/progchallenge/tree/master/seat-reservations/spec
And another test to refactor:
https://github.com/rngtng/progchallenge/blob/master/seat-reservations/spec/test_store_spec.rb
Check http://betterspecs.org for more "best-practices"
Disclamer We used rspec2 notiation, e.g.
subject.should == []
future rspec3 way will beexpect(subject).to be([])
The text was updated successfully, but these errors were encountered: