From b3d58792b7a3bd296e7c89d78a991931f961d7d5 Mon Sep 17 00:00:00 2001 From: Andrew Haines Date: Mon, 14 Jan 2013 12:59:49 +0000 Subject: [PATCH] Get specs running on Rails master --- spec/support/active_record.rb | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/spec/support/active_record.rb b/spec/support/active_record.rb index b581423b..b6a5db40 100644 --- a/spec/support/active_record.rb +++ b/spec/support/active_record.rb @@ -1,18 +1,5 @@ module ActiveRecord class Base - include ActiveModel::Validations - include ActiveModel::Conversion - - attr_reader :errors, :to_model - - def initialize - @errors = ActiveModel::Errors.new(self) - end - - def self.limit - self - end - end end