class Spectator::ValueStub(T)
 
  
  Overview
Stub that responds with a static value.
Defined in:
spectator/mocks/value_stub.crConstructors
- 
        .new(method : Symbol, value : T, constraint : AbstractArguments | Nil = nil, location : Location | Nil = nil)
        
          Creates the stub. 
Instance Method Summary
- 
        #call(call : MethodCall) : T
        
          Invokes the stubbed implementation. 
- 
        #to_s(io : IO) : Nil
        
          String representation of the stub, formatted as a method call and return value. 
- 
        #with_constraint(constraint : AbstractArguments | Nil)
        
          Returns a new stub with constrained arguments. 
Instance methods inherited from class Spectator::TypedStub(T)
  
  
    
      call(call : MethodCall) : T
    call, 
    
  
    
      to_s(io : IO) : Nil
    to_s
    
  
    
  Constructor methods inherited from class Spectator::TypedStub(T)
  
  
    
      new(method : Symbol, constraint : AbstractArguments | Nil = nil, location : Location | Nil = nil)
    new
    
  
    
  
    
  Instance methods inherited from class Spectator::Stub
  
  
    
      ===(call : MethodCall)
    ===, 
    
  
    
      constraint : AbstractArguments | Nil
    constraint, 
    
  
    
      location : Location | Nil
    location, 
    
  
    
      message(io : IO) : Nilmessage message, method : Symbol method, to_s(io : IO) : Nil to_s
Constructor methods inherited from class Spectator::Stub
  
  
    
      new(method : Symbol, constraint : AbstractArguments | Nil = nil, location : Location | Nil = nil)
    new
    
  
    
  
    
  Instance methods inherited from module Spectator::StubModifiers
  
  
    
      and_raise(exception_class : Exception.class, message)and_raise(exception : Exception)
and_raise(message : String | Nil = nil)
and_raise(exception_class : Exception.class) and_raise, and_return(value)
and_return(value, *values) and_return, with(constraint : AbstractArguments | Nil)
with(*args, **kwargs)
with(*args, **kwargs, &block : AbstractArguments -> T) forall T with, with_constraint(constraint : AbstractArguments | Nil) with_constraint
Instance methods inherited from class Object
  
  
    
      should(matcher : Spectator::Matchers::TypeMatcher(U), message = nil, *, _file = __FILE__, _line = __LINE__) forall Ushould(matcher, message = nil, *, _file = __FILE__, _line = __LINE__) should, should_eventually(matcher, message = nil, *, _file = __FILE__, _line = __LINE__) should_eventually, should_never(matcher, message = nil, *, _file = __FILE__, _line = __LINE__) should_never, should_not(matcher : Spectator::Matchers::TypeMatcher(U), message = nil, *, _file = __FILE__, _line = __LINE__) forall U
should_not(matcher : Spectator::Matchers::NilMatcher, message = nil, *, _file = __FILE__, _line = __LINE__)
should_not(matcher, message = nil, *, _file = __FILE__, _line = __LINE__) should_not
Constructor Detail
        
        def self.new(method : Symbol, value : T, constraint : AbstractArguments | Nil = nil, location : Location | Nil = nil)
        #
      
      
        Creates the stub.
Instance Method Detail
        
        def to_s(io : IO) : Nil
        #
      
      
        String representation of the stub, formatted as a method call and return value.
        
        def with_constraint(constraint : AbstractArguments | Nil)
        #
      
      
        Returns a new stub with constrained arguments.