Skip to content

Instantly share code, notes, and snippets.

@erithmetic
Created June 8, 2012 20:52
Show Gist options
  • Save erithmetic/2898066 to your computer and use it in GitHub Desktop.
Save erithmetic/2898066 to your computer and use it in GitHub Desktop.
RSpec before() filtered by tag
RSpec.configure do |c|
c.filter_run_excluding :database => true
c.include Rack::Test::Methods, :integration => true
c.before(:each, :database => true) do
setup_database
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment