mirror of
https://github.com/DatabaseCleaner/database_cleaner
synced 2023-03-27 23:22:03 -04:00
b70f09a3ed
This contains the work of @hbpoison, updated to work with the current version of DatabaseCleaner. https://github.com/bmabey/database_cleaner/pull/87/files
43 lines
736 B
Ruby
43 lines
736 B
Ruby
require 'ohm'
|
|
|
|
Ohm.connect :url => ENV['REDIS_URL']
|
|
|
|
class OhmWidget < Ohm::Model
|
|
attribute :name
|
|
|
|
def self.create!(attrs = {})
|
|
new({:name => 'some widget'}.merge(attrs)).save
|
|
end
|
|
|
|
def self.count
|
|
all.count
|
|
end
|
|
|
|
end
|
|
|
|
class OhmWidgetUsingDatabaseOne < Ohm::Model
|
|
connect :url => ENV['REDIS_URL_ONE']
|
|
attribute :name
|
|
|
|
def self.create!(attrs = {})
|
|
new({:name => 'a widget using database one'}.merge(attrs)).save
|
|
end
|
|
|
|
def self.count
|
|
all.count
|
|
end
|
|
|
|
end
|
|
|
|
class OhmWidgetUsingDatabaseTwo < Ohm::Model
|
|
connect :url => ENV['REDIS_URL_TWO']
|
|
attribute :name
|
|
|
|
def self.create!(attrs = {})
|
|
new({:name => 'a widget using database two'}.merge(attrs)).save
|
|
end
|
|
|
|
def self.count
|
|
all.count
|
|
end
|
|
end
|