Sha256: 0f1203c7a087f235eb0f2037b404ed8261f22096e0c96c19c70d3da31db492bf
Contents?: true
Size: 460 Bytes
Versions: 3
Compression:
Stored size: 460 Bytes
Contents
module MiniTestSpecRails module Init module ActionDispatchBehavior def self.included(klass) klass.class_eval do register_spec_type(/(Acceptance|Integration) ?Test\z/i, self) register_spec_type(self) { |desc| Class === desc && desc < self } register_rails_test_case self end end end end end ActionController::IntegrationTest.send :include, MiniTestSpecRails::Init::ActionDispatchBehavior
Version data entries
3 entries across 3 versions & 1 rubygems