struct Spectator::Matchers::ChangeToMatcher(ExpressionType, ToType)
- Spectator::Matchers::ChangeToMatcher(ExpressionType, ToType)
- Spectator::Matchers::Matcher
- Struct
- Value
- Object
Overview
Matcher that tests whether an expression changed to a specific value.
Defined in:
spectator/matchers/change_to_matcher.crConstructors
- 
        .new(expression : Block(ExpressionType), expected : ToType)
        
          Creates a new change matcher. 
Instance Method Summary
- 
        #by(amount)
        
          Specifies how much the initial value should change by. 
- 
        #description : String
        
          Short text about the matcher's purpose. 
- 
        #from(value)
        
          Specifies what the initial value of the expression must be. 
- 
        #match(actual : Expression(T)) : MatchData forall T
        
          Actually performs the test against the expression. 
- 
        #negated_match(actual : Expression(T)) : MatchData forall T
        
          Negated matching for this matcher is not supported. 
Instance methods inherited from struct Spectator::Matchers::Matcher
  
  
    
      description : String
    description, 
    
  
    
      initialize
    initialize, 
    
  
    
      match(actual : Expression(T)) : MatchData forall T
    match, 
    
  
    
      negated_match(actual : Expression(T)) : MatchData forall T
    negated_match
    
  
    
  Constructor methods inherited from struct Spectator::Matchers::Matcher
  
  
    
      new
    new
    
  
    
  
    
    
    
  
    
    
    
  
    
  Instance methods inherited from class Object
  
  
    
      should(matcher, message = nil)
    should, 
    
  
    
      should_eventually(matcher, message = nil)
    should_eventually, 
    
  
    
      should_never(matcher, message = nil)
    should_never, 
    
  
    
      should_not(matcher, message = nil)
    should_not
    
  
    
    
  
Constructor Detail
Creates a new change matcher.
Instance Method Detail
Short text about the matcher's purpose. This explains what condition satisfies the matcher. The description is used when the one-liner syntax is used.
Actually performs the test against the expression.
Negated matching for this matcher is not supported. Attempting to call this method will result in a compilation error.
This syntax has a logical problem. "The action does not change the expression to some value." Is it a failure if the value is not changed, but it is the expected value?
RSpec doesn't support this syntax either.