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
f300ef0d
Commit
f300ef0d
authored
Mar 18, 2014
by
Matt Connolly
Committed by
Ryan Bigg
Mar 20, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add rspec matcher: act_as_paranoid
Fixes #126
parent
236861da
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
lib/paranoia.rb
+2
-0
lib/paranoia/rspec.rb
+9
-0
No files found.
lib/paranoia.rb
View file @
f300ef0d
...
...
@@ -166,3 +166,5 @@ class ActiveRecord::Base
self
.
class
.
paranoia_column
end
end
require
'paranoia/rspec'
if
defined?
RSpec
lib/paranoia/rspec.rb
0 → 100644
View file @
f300ef0d
require
'rspec/expectations'
# Validate the subject's class did call "acts_as_paranoid"
RSpec
::
Matchers
.
define
:act_as_paranoid
do
match
{
|
subject
|
subject
.
class
.
ancestors
.
include?
(
Paranoia
)
}
failure_message_for_should
{
"
#{
subject
.
class
}
should use `acts_as_paranoid`"
}
failure_message_for_should_not
{
"
#{
subject
.
class
}
should not use `acts_as_paranoid`"
}
end
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