Skip to content

Instantly share code, notes, and snippets.

@batter
Created March 16, 2016 22:26
Show Gist options
  • Save batter/6947876631e7d72144c9 to your computer and use it in GitHub Desktop.
Save batter/6947876631e7d72144c9 to your computer and use it in GitHub Desktop.
ActiveModel::Dirty attribute_name_changed? return values
begin
require 'bundler/inline'
rescue LoadError => e
$stderr.puts 'Bundler version 1.10 or later is required. Please update your Bundler'
raise e
end
gemfile(true) do
source 'https://rubygems.org'
# Activate the gem you are reporting the issue against.
gem 'activerecord', '4.2.6'
gem 'sqlite3'
end
require 'active_record'
require 'minitest/autorun'
require 'logger'
# Ensure backward compatibility with Minitest 4
Minitest::Test = MiniTest::Unit::TestCase unless defined?(Minitest::Test)
# This connection will do for database-independent bug reports.
ActiveRecord::Base.establish_connection(adapter: 'sqlite3', database: ':memory:')
ActiveRecord::Base.logger = Logger.new(STDOUT)
ActiveRecord::Schema.define do
create_table :foos, force: true do |t|
t.string :name
end
end
class Foo < ActiveRecord::Base
end
class BugTest < Minitest::Test
def test_active_model_dirty_attribute_changed
assert_equal false, Foo.new.name_changed?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment