Skip to content

Instantly share code, notes, and snippets.

@jfirebaugh
Created December 12, 2011 20:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jfirebaugh/1468854 to your computer and use it in GitHub Desktop.
Save jfirebaugh/1468854 to your computer and use it in GitHub Desktop.
shared_context "controller", :type => :controller do
before do
puts "shared_context"
end
end
RSpec.configure do |config|
config.before :each, :type => :controller do
puts "before :each"
end
end
describe "Test", :type => :controller do
describe "nesting" do
it "runs config.before blocks once but shared contexts twice" do
# see output
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment