Skip to content
This repository was archived by the owner on Sep 30, 2018. It is now read-only.

Commit 593335c

Browse files
committedFeb 11, 2014
Update persistence spec
1 parent 2027858 commit 593335c

File tree

1 file changed

+21
-6
lines changed

1 file changed

+21
-6
lines changed
 

‎spec/model/persistence_spec.rb

+21-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
require 'spec_helper'
22

33
describe Vienna::Model do
4-
let(:model) { SimpleModel.new }
5-
4+
let(:model_class) { SimpleModel }
5+
let(:model) { model_class.new }
6+
let(:loaded_model) { model_class.load(:first_name => "Adam", id: 872) }
67
describe "#did_destroy" do
78
it "triggers a :destroy event on the record" do
89
called = false
@@ -13,16 +14,30 @@
1314

1415
it "triggers a :destroy event on the class" do
1516
called = false
16-
SimpleModel.on(:destroy) { called = true }
17+
model_class.on(:destroy) { called = true }
1718
model.did_destroy
1819
called.should eq(true)
1920
end
2021

2122
it "removes the record from the class identity_map" do
22-
model = SimpleModel.load(:first_name => "Adam", id: 872)
23+
loaded_model.did_destroy
24+
model_class.identity_map[loaded_model.id].should eq(nil)
25+
end
2326

24-
model.did_destroy
25-
SimpleModel.identity_map[model.id].should eq(nil)
27+
it "removes the record from the class record_array" do
28+
loaded_model.did_destroy
29+
model_class.all.should_not include(loaded_model)
30+
end
31+
end
32+
33+
describe '#destroyed?' do
34+
it 'is false for "living" models' do
35+
model.destroyed?.should be_falsey
36+
end
37+
38+
it "is true for destroyed models" do
39+
loaded_model.did_destroy
40+
loaded_model.destroyed?.should be_truthy
2641
end
2742
end
2843

0 commit comments

Comments
 (0)
This repository has been archived.