Created
June 18, 2014 16:34
-
-
Save cheeyeo/057fe2c4b608a4eecece to your computer and use it in GitHub Desktop.
RSPEC Shared examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
shared_examples "collections" do | |
it "is empty when first created" do | |
expect(described_class.new).to be_empty | |
end | |
end | |
describe Array do | |
include_examples "collections", Array | |
end | |
describe Hash do | |
include_examples "collections", Hash | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment