Skip to content

Commit

Permalink
Fix appveyor failure on cache expiration
Browse files Browse the repository at this point in the history
  • Loading branch information
bf4 committed Sep 17, 2015
1 parent 47a846d commit 4a39247
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions test/action_controller/serialization_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,15 @@ def render_object_expired_with_cache_enabled
generate_cached_serializer(post)

post.title = 'ZOMG a New Post'
sleep 0.1
render json: post

expires_in = [
PostSerializer._cache_options[:expires_in],
CommentSerializer._cache_options[:expires_in],
].max

Timecop.travel(Time.zone.now + expires_in) do
render json: post
end
end

def render_changed_object_with_cache_enabled
Expand Down

0 comments on commit 4a39247

Please sign in to comment.