Skip to content

Instantly share code, notes, and snippets.

@michaldarda
Created September 24, 2017 18:35
Show Gist options
  • Save michaldarda/b2dd81731cba180904def87f508cfc3d to your computer and use it in GitHub Desktop.
Save michaldarda/b2dd81731cba180904def87f508cfc3d to your computer and use it in GitHub Desktop.
30694_set_in_where_condition.rb
# frozen_string_literal: true
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"
gem "rails", github: "rails/rails"
gem "arel", github: "rails/arel"
gem "sqlite3"
end
require "active_record"
require "minitest/autorun"
require "logger"
# 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 :posts, force: true do |t|
end
end
class Post < ActiveRecord::Base
end
class BugTest < Minitest::Test
def test_association_stuff
posts = 2.times.map { Post.create! }
assert_equal 2, posts.length
assert_equal 2, Post.where(id: Set.new(posts.map(&:id))).count
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment