Sha256: 72c04f3a9d5ac4b183565ca50c12baa6f2c4f7bceb5bbc6936ff3ebf90662421
Contents?: true
Size: 663 Bytes
Versions: 1
Compression:
Stored size: 663 Bytes
Contents
require 'rspec/live_controllers/version' require 'rspec/live_controllers/matchers/base' require 'rspec/live_controllers/matchers/have_chunk' require 'rspec/live_controllers/matchers/start_from_chunk' require 'rspec/live_controllers/matchers/end_with_chunk' module RSpec module LiveControllers module Matchers def start_from_chunk(actual) RSpec::LiveControllers::Matchers::StartFromChunk.new(actual) end def end_with_chunk(actual) RSpec::LiveControllers::Matchers::EndWithChunk.new(actual) end def have_chunk(actual) RSpec::LiveControllers::Matchers::HaveChunk.new(actual) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rspec-live_controllers-0.0.1 | lib/rspec/live_controllers/matchers.rb |