mirror of https://github.com/rails/rails
27 lines
541 B
Ruby
27 lines
541 B
Ruby
# encoding: utf-8
|
|
require 'abstract_unit'
|
|
|
|
|
|
class MultibyteUnicodeDatabaseTest < ActiveSupport::TestCase
|
|
|
|
include ActiveSupport::Multibyte::Unicode
|
|
|
|
def setup
|
|
@ucd = UnicodeDatabase.new
|
|
end
|
|
|
|
UnicodeDatabase::ATTRIBUTES.each do |attribute|
|
|
define_method "test_lazy_loading_on_attribute_access_of_#{attribute}" do
|
|
@ucd.expects(:load)
|
|
@ucd.send(attribute)
|
|
end
|
|
end
|
|
|
|
def test_load
|
|
@ucd.load
|
|
UnicodeDatabase::ATTRIBUTES.each do |attribute|
|
|
assert @ucd.send(attribute).length > 1
|
|
end
|
|
end
|
|
end
|