Commit 9b7ca61f8af919a3f614e45a8aabe09a3636b5f2

Squashed a few spec warnings and debug output
  
8282 db.store(doc1)
8383 db.store(doc2)
8484 res = db.query(:map => "function(doc){ if(doc.foo == 'bar') emit(null, doc) }")
85 res.should be_instance_of CouchObject::Document
85 res.should be_instance_of(CouchObject::Document)
8686 res.rows.size.should == 1
8787 res.rows.first["value"]["foo"].should == "bar"
8888 end
9595 db.store(doc2)
9696 res = db.query(:map => "function(doc){ emit(null, doc.data) }",
9797 :reduce => "function(key, values){ return sum(values) }")
98 p res
99 res.should be_instance_of CouchObject::Document
98 res.should be_instance_of(CouchObject::Document)
10099 res.rows[0]['value'].should == 4
101100 end
102101