File: compatibility_spec.rb

package info (click to toggle)
ruby-fakeredis 0.8.0-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 628 kB
  • sloc: ruby: 4,868; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 203 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
require 'spec_helper'

module FakeRedis
  describe "Compatibility" do
    it "should be accessible through FakeRedis::Redis" do
      expect { FakeRedis::Redis.new }.not_to raise_error
    end
  end
end