Sha256: da843ac584ededb2d699a70c4ba3144f9eb9b868b57fc2941b8c8343f1508881
Contents?: true
Size: 1 KB
Versions: 1
Compression:
Stored size: 1 KB
Contents
require 'spec_helper' module RailsBestPractices module Prepares describe InitializerPrepare do let(:runner) { Core::Runner.new(prepares: InitializerPrepare.new) } context 'initializers' do it 'should set include_forbidden_attributes_protection config' do content =<<-EOF class AR ActiveRecord::Base.send(:include, ActiveModel::ForbiddenAttributesProtection) end EOF runner.prepare('config/initializers/ar.rb', content) configs = Prepares.configs expect(configs['railsbp.include_forbidden_attributes_protection']).to eq('true') end it 'should not set include_forbidden_attributes_protection config' do content =<<-EOF class AR end EOF runner.prepare('config/initializers/ar.rb', content) configs = Prepares.configs expect(configs['railsbp.include_forbidden_attributes_protection']).to be_nil end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails_best_practices-1.19.1 | spec/rails_best_practices/prepares/initializer_prepare_spec.rb |