module Quarry class Runner # = Spec Context # # Specifications are run within an instance of Context. class Context < Module def initialize(spec) @spec = spec extend self end def inspect @spec.file end end #class Context end #module Spec end #module Quarry