Skip to content

Instantly share code, notes, and snippets.

@Olgagr
Created May 30, 2013 06:00
Show Gist options
  • Save Olgagr/5675953 to your computer and use it in GitHub Desktop.
Save Olgagr/5675953 to your computer and use it in GitHub Desktop.
create shared examples in spec file
shared_examples('title of shared examples') do
#some examples here
end
#then in a spec
describe 'something' do
it_behaves_like 'title of shared examples'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment