Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
e27ea805
Commit
e27ea805
authored
Feb 06, 2018
by
Matija Čupić
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix RedisCacheable#cache_attributes spec
parent
b75fa80e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
spec/models/concerns/redis_cacheable_spec.rb
spec/models/concerns/redis_cacheable_spec.rb
+2
-6
No files found.
spec/models/concerns/redis_cacheable_spec.rb
View file @
e27ea805
...
...
@@ -5,6 +5,7 @@ describe RedisCacheable do
before
do
model
.
extend
(
described_class
)
allow
(
model
).
to
receive
(
:cache_attribute_key
).
and_return
(
'key'
)
end
describe
'#cached_attribute'
do
...
...
@@ -13,8 +14,6 @@ describe RedisCacheable do
subject
{
model
.
cached_attribute
(
payload
.
keys
.
first
)
}
it
'gets the cache attribute'
do
expect
(
model
).
to
receive
(
:cache_attribute_key
).
and_return
(
'key'
)
Gitlab
::
Redis
::
SharedState
.
with
do
|
redis
|
expect
(
redis
).
to
receive
(
:get
).
with
(
'key'
)
.
and_return
(
payload
.
to_json
)
...
...
@@ -31,10 +30,7 @@ describe RedisCacheable do
it
'sets the cache attributes'
do
Gitlab
::
Redis
::
SharedState
.
with
do
|
redis
|
values
.
each
do
|
key
,
value
|
redis_key
=
model
.
send
(
:cache_attribute_key
)
expect
(
redis
).
to
receive
(
:set
).
with
(
redis_key
,
values
.
to_json
,
anything
)
end
expect
(
redis
).
to
receive
(
:set
).
with
(
'key'
,
values
.
to_json
,
anything
)
end
subject
...
...
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