Merge commit '9399b27f3f
'
This commit is contained in:
commit
64d71d3ac4
2 changed files with 20 additions and 5 deletions
|
@ -135,7 +135,7 @@ describe CouchRest::Model do
|
|||
end
|
||||
end
|
||||
|
||||
describe "update attributes" do
|
||||
describe "update attributes without saving" do
|
||||
before(:each) do
|
||||
a = Article.get "big-bad-danger" rescue nil
|
||||
a.destroy if a
|
||||
|
@ -161,13 +161,21 @@ describe CouchRest::Model do
|
|||
@art['title'].should == "big bad danger"
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
describe "update attributes" do
|
||||
before(:each) do
|
||||
a = Article.get "big-bad-danger" rescue nil
|
||||
a.destroy if a
|
||||
@art = Article.new(:title => "big bad danger")
|
||||
@art.save
|
||||
end
|
||||
it "should save" do
|
||||
@art['title'].should == "big bad danger"
|
||||
@art.update_attributes('date' => Time.now, :title => "super danger")
|
||||
loaded = Article.get @art.id
|
||||
loaded['title'].should == "super danger"
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
describe "a model with template values" do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue