aboutsummaryrefslogblamecommitdiffstats
path: root/activemodel/test/cases/lint_test.rb
blob: e4c069e1ab1da5442940363c26878eced1a411de (plain) (tree)
1
2
3
4
5
6
7
8
9
                      
 



                                      
                              
                                   
 


                              
 






                                    
 

                               
     
   
require 'cases/helper'

class LintTest < ActiveModel::TestCase
  include ActiveModel::Lint::Tests

  class CompliantModel
    extend ActiveModel::Naming
    include ActiveModel::Conversion

    def valid?()      true end
    def new_record?() true end
    def destroyed?()  true end

    def errors
      obj = Object.new
      def obj.[](key)         [] end
      def obj.full_messages() [] end
      obj
    end
  end

  def setup
    @model = CompliantModel.new
  end
end