This repository was archived by the owner on Sep 30, 2018. It is now read-only.
File tree 1 file changed +21
-6
lines changed
1 file changed +21
-6
lines changed Original file line number Diff line number Diff line change 1
1
require 'spec_helper'
2
2
3
3
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 ) }
6
7
describe "#did_destroy" do
7
8
it "triggers a :destroy event on the record" do
8
9
called = false
13
14
14
15
it "triggers a :destroy event on the class" do
15
16
called = false
16
- SimpleModel . on ( :destroy ) { called = true }
17
+ model_class . on ( :destroy ) { called = true }
17
18
model . did_destroy
18
19
called . should eq ( true )
19
20
end
20
21
21
22
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
23
26
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
26
41
end
27
42
end
28
43
You can’t perform that action at this time.
0 commit comments