rspec/rspec-rails

View on GitHub
lib/rspec/rails/example/model_example_group.rb

Summary

Maintainability
A
0 mins
Test Coverage
module RSpec
  module Rails
    # @api public
    # Container class for model spec functionality. Does not provide anything
    # special over the common RailsExampleGroup currently.
    module ModelExampleGroup
      extend ActiveSupport::Concern
      include RSpec::Rails::RailsExampleGroup
    end
  end
end