aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorNikita Afanasenko <nafanasenko@spbtv.com>2012-11-13 18:39:07 +0400
committerNikita Afanasenko <nafanasenko@spbtv.com>2012-11-13 18:39:07 +0400
commit8424d0dda3a991b735365e993d907827a1913480 (patch)
treed61c49b77467a37143711371894f89b5883bfb89 /activerecord
parent8f3f50a3cca98a322083269562d446498825ad5f (diff)
downloadrails-8424d0dda3a991b735365e993d907827a1913480.tar.gz
rails-8424d0dda3a991b735365e993d907827a1913480.tar.bz2
rails-8424d0dda3a991b735365e993d907827a1913480.zip
Regression test for #7238
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/cases/finder_test.rb7
-rw-r--r--activerecord/test/models/topic.rb6
2 files changed, 13 insertions, 0 deletions
diff --git a/activerecord/test/cases/finder_test.rb b/activerecord/test/cases/finder_test.rb
index d44ac21b05..f68d7de3ae 100644
--- a/activerecord/test/cases/finder_test.rb
+++ b/activerecord/test/cases/finder_test.rb
@@ -610,6 +610,13 @@ class FinderTest < ActiveRecord::TestCase
assert_nil Topic.find_by_heading("The First Topic!")
end
+ def test_find_by_one_attribute_bang_with_blank_defined
+ BlankTopic.create(title: "The Blank One")
+ assert_nothing_raised do
+ BlankTopic.find_by_title!("The Blank One")
+ end
+ end
+
def test_find_by_one_attribute_with_conditions
assert_equal accounts(:rails_core_account), Account.where('firm_id = ?', 6).find_by_credit_limit(50)
end
diff --git a/activerecord/test/models/topic.rb b/activerecord/test/models/topic.rb
index ab31d85e46..f7f4cebc5a 100644
--- a/activerecord/test/models/topic.rb
+++ b/activerecord/test/models/topic.rb
@@ -107,6 +107,12 @@ class ImportantTopic < Topic
serialize :important, Hash
end
+class BlankTopic < Topic
+ def blank?
+ true
+ end
+end
+
module Web
class Topic < ActiveRecord::Base
has_many :replies, :dependent => :destroy, :foreign_key => "parent_id", :class_name => 'Web::Reply'