Skip to content

Instantly share code, notes, and snippets.

@prudhvi
Created February 6, 2017 21:21
Show Gist options
  • Save prudhvi/dd37759a4ad36fec8a8cd5b4fffef302 to your computer and use it in GitHub Desktop.
Save prudhvi/dd37759a4ad36fec8a8cd5b4fffef302 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', :branch => '4-2-stable'
gem 'arel', github: 'rails/arel', :branch => '6-0-stable'
gem 'rack'
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
post = Post.create!
post.add_to_transaction
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment