Skip to content

Instantly share code, notes, and snippets.

@ares
Created August 31, 2016 15:04
Show Gist options
  • Save ares/e10aed8786782a2228187c3973986da1 to your computer and use it in GitHub Desktop.
Save ares/e10aed8786782a2228187c3973986da1 to your computer and use it in GitHub Desktop.
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 "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
create_table :comments, force: true do |t|
t.integer :post_id
end
end
class Post < ActiveRecord::Base
default_scope lambda {
where(id: 1)
}
end
class BugTest < Minitest::Test
def test_association_stuff
post = Post.new
assert_nil post.id
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment