aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2019-06-24 13:59:15 -0400
committerGitHub <noreply@github.com>2019-06-24 13:59:15 -0400
commitb65f88652f835093030bf65b9e31e727ba58a6de (patch)
tree40e6e2afb2f230e31fd55b9828423265bb857682 /activerecord/test/models
parent58256db50750781016f5ea6d2dd6cbc72096062b (diff)
parentbbcd707aefe5da137137a8deb13908ec9a7db77d (diff)
downloadrails-b65f88652f835093030bf65b9e31e727ba58a6de.tar.gz
rails-b65f88652f835093030bf65b9e31e727ba58a6de.tar.bz2
rails-b65f88652f835093030bf65b9e31e727ba58a6de.zip
Merge pull request #36210 from vishaltelangre/raise-record-invalid-when-associations-fail-to-save-due-to-uniqueness-failure
Fix: ActiveRecord::RecordInvalid is not raised when an associated record fails to #save! due to uniqueness validation failure
Diffstat (limited to 'activerecord/test/models')
-rw-r--r--activerecord/test/models/author.rb1
-rw-r--r--activerecord/test/models/book.rb6
2 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/test/models/author.rb b/activerecord/test/models/author.rb
index b52b643ad7..da7e4139b1 100644
--- a/activerecord/test/models/author.rb
+++ b/activerecord/test/models/author.rb
@@ -116,6 +116,7 @@ class Author < ActiveRecord::Base
has_many :tags_with_primary_key, through: :posts
has_many :books
+ has_many :published_books, class_name: "PublishedBook"
has_many :unpublished_books, -> { where(status: [:proposed, :written]) }, class_name: "Book"
has_many :subscriptions, through: :books
has_many :subscribers, -> { order("subscribers.nick") }, through: :subscriptions
diff --git a/activerecord/test/models/book.rb b/activerecord/test/models/book.rb
index afdda1a81e..43b82e6047 100644
--- a/activerecord/test/models/book.rb
+++ b/activerecord/test/models/book.rb
@@ -24,3 +24,9 @@ class Book < ActiveRecord::Base
"do publish work..."
end
end
+
+class PublishedBook < ActiveRecord::Base
+ self.table_name = "books"
+
+ validates_uniqueness_of :isbn
+end