Skip to content

Commit

Permalink
Removed should_eventually from some tests that were implemented and p…
Browse files Browse the repository at this point in the history
…assing.
  • Loading branch information
jnunemaker committed Aug 3, 2009
1 parent 1351c65 commit a0939b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/mongomapper/associations/proxy.rb
Expand Up @@ -8,7 +8,7 @@ class Proxy
end

def initialize(owner, association)
@owner= owner
@owner = owner
@association = association
reset
end
Expand Down
4 changes: 2 additions & 2 deletions test/functional/test_document.rb
Expand Up @@ -563,12 +563,12 @@ def setup
@document.count.should == 1
end

should_eventually "update attributes" do
should "update attributes" do
@doc.first_name.should == 'Johnny'
@doc.age.should == 30
end

should_eventually "update attributes in the database" do
should "update attributes in the database" do
from_db = @document.find(@doc.id)
from_db.first_name.should == 'Johnny'
from_db.age.should == 30
Expand Down

0 comments on commit a0939b1

Please sign in to comment.