Skip to content

Instantly share code, notes, and snippets.

@cheeyeo
Created June 18, 2014 16:34
Show Gist options
  • Save cheeyeo/057fe2c4b608a4eecece to your computer and use it in GitHub Desktop.
Save cheeyeo/057fe2c4b608a4eecece to your computer and use it in GitHub Desktop.
RSPEC Shared examples
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