spec/unit/database_spec.rb in andrewtimberlake-couch_potato-0.2.8.3 vs spec/unit/database_spec.rb in andrewtimberlake-couch_potato-0.2.8.4
- old
+ new
@@ -1,10 +1,17 @@
require File.dirname(__FILE__) + '/../spec_helper'
class DbTestUser
end
+# namespaced model
+module Parent
+ class Child
+ include CouchPotato::Persistence
+ end
+end
+
describe CouchPotato::Database, 'new' do
it "should raise an exception if the database doesn't exist" do
lambda {
CouchPotato::Database.new CouchRest.database('couch_potato_invalid')
}.should raise_error('Database \'couch_potato_invalid\' does not exist.')
@@ -16,16 +23,21 @@
db = CouchPotato::Database.new(stub('couchrest db', :info => nil))
lambda {
db.load nil
}.should raise_error("Can't load a document without an id (got nil)")
end
-
+
it "should set itself on the model" do
user = mock 'user'
DbTestUser.stub!(:new).and_return(user)
db = CouchPotato::Database.new(stub('couchrest db', :info => nil, :get => {'ruby_class' => 'DbTestUser'}))
user.should_receive(:database=).with(db)
db.load '1'
+ end
+
+ it "should load namespaced models" do
+ db = CouchPotato::Database.new(stub('couchrest db', :info => nil, :get => {'ruby_class' => 'Parent::Child'}))
+ db.load('1').class.should == Parent::Child
end
end
describe CouchPotato::Database, 'save_document' do
it "should set itself on the model for a new object before doing anything else" do
\ No newline at end of file