Sha256: 24dc3e1cc59a9fd0ab43c71e057b0eae8754a55df7305509b4f5b42aefa6afa9
Contents?: true
Size: 1.45 KB
Versions: 2
Compression:
Stored size: 1.45 KB
Contents
require "rspec" require "rspec/wait/handler" module RSpec module Wait class Target < RSpec::Expectations::ExpectationTarget # From: https://github.com/rspec/rspec-expectations/blob/v3.0.0/lib/rspec/expectations/expectation_target.rb#L22 UndefinedValue = Module.new # From: https://github.com/rspec/rspec-expectations/blob/v3.0.0/lib/rspec/expectations/expectation_target.rb#L30-L41 def self.for(value, block) if UndefinedValue.equal?(value) unless block raise ArgumentError, "You must pass either an argument or a block to `wait_for`." end new(block) elsif block raise ArgumentError, "You cannot pass both an argument and a block to `wait_for`." else new(value) end end # # # From: https://github.com/rspec/rspec-expectations/blob/v3.0.0/lib/rspec/expectations/expectation_target.rb#L53-L54 def to(matcher = nil, message = nil, &block) prevent_operator_matchers(:to, matcher) unless matcher PositiveHandler.handle_matcher(@target, matcher, message, &block) end # From: https://github.com/rspec/rspec-expectations/blob/v3.0.0/lib/rspec/expectations/expectation_target.rb#L66-L67 def not_to(matcher = nil, message = nil, &block) prevent_operator_matchers(:not_to, matcher) unless matcher NegativeHandler.handle_matcher(@target, matcher, message, &block) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rspec-wait-0.0.3 | lib/rspec/wait/target.rb |
rspec-wait-0.0.2 | lib/rspec/wait/target.rb |