Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
paranoia
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ikcrm_common
paranoia
Commits
f4c49b51
Commit
f4c49b51
authored
May 26, 2011
by
Ryan Bigg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix regression in
fb9c903a
where objects were no longer frozen upon delete
parent
7439417e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
lib/paranoia.rb
+1
-0
test/paranoia_test.rb
+2
-0
No files found.
lib/paranoia.rb
View file @
f4c49b51
...
...
@@ -10,6 +10,7 @@ module Paranoia
def
destroy
_run_destroy_callbacks
self
.
update_attribute
(
:deleted_at
,
Time
.
now
)
if
!
deleted?
&&
persisted?
freeze
end
alias
:delete
:destroy
...
...
test/paranoia_test.rb
View file @
f4c49b51
...
...
@@ -37,6 +37,7 @@ class ParanoiaTest < Test::Unit::TestCase
model
.
delete
assert_equal
true
,
model
.
deleted_at
.
nil?
assert
model
.
frozen?
assert_equal
0
,
model
.
class
.
count
assert_equal
0
,
model
.
class
.
unscoped
.
count
...
...
@@ -50,6 +51,7 @@ class ParanoiaTest < Test::Unit::TestCase
model
.
delete
assert_equal
false
,
model
.
deleted_at
.
nil?
assert
model
.
frozen?
assert_equal
0
,
model
.
class
.
count
assert_equal
1
,
model
.
class
.
unscoped
.
count
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment