Sha256: c0b5fdac7975240cf057ede28d3e2acd89f4dfc60ecad87fab3e62852e0c2db3

Contents?: true

Size: 1.55 KB

Versions: 7

Compression:

Stored size: 1.55 KB

Contents

require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')

describe Simplabs::Excellent::Checks::Rails::CustomInitializeMethodCheck do

  before do
    @excellent = Simplabs::Excellent::Runner.new(Simplabs::Excellent::Checks::Rails::CustomInitializeMethodCheck.new)
  end

  describe '#evaluate' do

    it 'should ignore classes that are not active record models' do
      code = <<-END
        class Test
          def initialize
          end
        end
      END
      @excellent.check_code(code)
      warnings = @excellent.warnings

      warnings.should be_empty
    end

    it 'should reject an active record model that defines initialize' do
      code = <<-END
        class User < ActiveRecord::Base
          def initialize
          end
        end
      END
      @excellent.check_code(code)
      warnings = @excellent.warnings

      warnings.should_not be_empty
      warnings[0].info.should        == { :class => 'User' }
      warnings[0].line_number.should == 1
      warnings[0].message.should     == 'User defines initialize method.'
    end

    it 'should also work with namespaced models' do
      code = <<-END
        class Backend::User < ActiveRecord::Base
          def initialize
          end
        end
      END
      @excellent.check_code(code)
      warnings = @excellent.warnings

      warnings.should_not be_empty
      warnings[0].info.should        == { :class => 'Backend::User' }
      warnings[0].line_number.should == 1
      warnings[0].message.should     == 'Backend::User defines initialize method.'
    end

  end

end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
simplabs-excellent-1.5.2 spec/checks/rails/custom_initialize_method_check_spec.rb
simplabs-excellent-1.5.3 spec/checks/rails/custom_initialize_method_check_spec.rb
excellent-1.7.2 spec/checks/rails/custom_initialize_method_check_spec.rb
excellent-1.7.1 spec/checks/rails/custom_initialize_method_check_spec.rb
excellent-1.7.0 spec/checks/rails/custom_initialize_method_check_spec.rb
excellent-1.6.0 spec/checks/rails/custom_initialize_method_check_spec.rb
excellent-1.5.4 spec/checks/rails/custom_initialize_method_check_spec.rb