File: hash_as_cache_store_spec.rb

package info (click to toggle)
ruby-roadie 4.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 460 kB
  • sloc: ruby: 3,269; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 192 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

require "spec_helper"
require "roadie/rspec"

describe "Using Hash as a cache store" do
  subject(:hash) { Hash.new }
  it_behaves_like "roadie cache store"
end