Sha256: 090be21e09a2c4ddffce44ba7953f81f22bca716c597594bc6ea3ff77671aa6f
Contents?: true
Size: 397 Bytes
Versions: 11
Compression:
Stored size: 397 Bytes
Contents
module Spec module Example class ExampleDescription attr_reader :description, :options, :backtrace def initialize(description, options={}, backtrace=nil) @description, @options, @backtrace = description, options, backtrace end def ==(other) (other.description == description) & (other.backtrace == backtrace) end end end end
Version data entries
11 entries across 11 versions & 2 rubygems