Skip to content

Instantly share code, notes, and snippets.

@dchelimsky
Created March 23, 2010 06:19
Show Gist options
  • Save dchelimsky/340887 to your computer and use it in GitHub Desktop.
Save dchelimsky/340887 to your computer and use it in GitHub Desktop.
Rspec.configure do |c|
c.before do
unless running_example.metadata[:transactions] == :off
puts "RUNNING TRANSACTIONS"
end
end
end
describe "foo", :transactions => :on do
it "does something" do
# ....
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment