database_cleaner/examples/lib/couchpotato_models.rb

22 lines
396 B
Ruby

require 'couch_potato'
::CouchPotato::Config.database_name = 'couch_potato_test'
class Widget
include CouchPotato::Persistence
property :name
view :by_name, :key => :name
# mimic the AR interface used in example_steps
def self.create!(attrs = {})
CouchPotato.database.save(self.new)
end
def self.count
CouchPotato.database.view(::Widget.by_name).size
end
end