forked from globalize/globalize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
issue_template.rb
38 lines (31 loc) · 967 Bytes
/
issue_template.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Activate the gem you are reporting the issue against.
gem 'activerecord', '4.2.0'
gem 'globalize', '5.0.1'
require 'active_record'
require 'globalize'
require 'minitest/autorun'
require 'logger'
# Ensure backward compatibility with Minitest 4
Minitest::Test = MiniTest::Unit::TestCase unless defined?(Minitest::Test)
# 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 :post_translations, force: true do |t|
t.references :post
t.string :title
t.text :content
t.string :locale
end
end
class Post < ActiveRecord::Base
translates :content, :title
end
class BugTest < Minitest::Test
def test_association_stuff
post = Post.create!(title: 'HI')
assert_equal 'HI', post.title
end
end