module DataMapper module Spec module CollectionHelpers module GroupMethods def self.extended(base) base.class_inheritable_accessor :loaded base.loaded = false super end def should_not_be_a_kicker(ivar = :@articles) unless loaded it 'should not be a kicker' do instance_variable_get(ivar).should_not be_loaded end end end end end end end