Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View almostwhitehat's full-sized avatar
💭
Matt Metzger is typing

Matt Metzger almostwhitehat

💭
Matt Metzger is typing
View GitHub Profile
# In your test_helper.rb
class ActiveRecord::Base
mattr_accessor :shared_connection
@@shared_connection = nil
def self.connection
@@shared_connection || retrieve_connection
end
end