mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
26 lines
541 B
Ruby
26 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
|