提交 904bfad0 编写于 作者: A Aaron Patterson

adding a weird test case

上级 fd4e178c
# encoding: utf-8
require "cases/helper"
require 'active_support/concurrency/latch'
require 'models/post'
......@@ -582,6 +584,11 @@ def test_readonly_attributes
assert_equal "changed", post.body
end
def test_unicode_column_name
weird = Weird.create(:なまえ => 'たこ焼き仮面')
assert_equal 'たこ焼き仮面', weird.なまえ
end
def test_non_valid_identifier_column_name
weird = Weird.create('a$b' => 'value')
weird.reload
......
......@@ -781,6 +781,7 @@ def create_table(*args, &block)
end
create_table :weirds, :force => true do |t|
t.string 'a$b'
t.string 'なまえ'
t.string 'from'
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册