Spectator::AbstractExpression
Inherits Reference / Object
Represents an expression from a test.
This is typically captured by an expect macro.
It consists of a label and the value of the expression.
The label should be a string recognizable by the user,
or nil if one isn't available.
This base class is provided so that all generic sub-classes can be stored as this one type.
The value of the expression can be retrieved by down-casting to the expected type with #cast.
NOTE: This is intentionally a class and not a struct. If it were a struct, changes made to the value held by an instance may not be kept when passing it around. See commit ca564619ad2ae45f832a058d514298c868fdf699.
Constructors
Creates the expression.
The label is usually the Crystal code evaluating to the #raw_value.
It can be nil if it isn't available.
Instance methods
Produces a detailed string representation of the expression. This consists of the label (if one is available) and the value.
User recognizable string for the expression. This can be something like a variable name or a snippet of Crystal code.
Produces a string representation of the expression. This consists of the label (if one is available) and the value.