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

                             
                      
 
                                        


                                  
                              
                                   
 
                              
 
              
                  

       
 

                               
     
   
# frozen_string_literal: true

require "cases/helper"

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

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

    def persisted?() false end

    def errors
      Hash.new([])
    end
  end

  def setup
    @model = CompliantModel.new
  end
end