我向Date类添加了两个方法,并将其放置在lib/core_ext
中,如下所示:
class Date
def self.new_from_hash(hash)
Date.new flatten_date_array hash
end
private
def self.flatten_date_array(hash)
%w(1 2 3).map { |e| hash["date(#{e}i)"].to_i }
end
end
然后创建了一个测试
require 'test_helper'
class DateTest < ActiveSupport::TestCase
test 'the truth' do
assert true
end
test 'can create regular Date' do
date = Date.new
assert date.acts_like_date?
end
test 'date from hash acts like date' do
hash = ['1i' => 2015, '2i'=> 'February', '3i' => 14]
date = Date.new_from_hash hash
assert date.acts_like_date?
end
end
现在我得到一个错误:Minitest::UnexpectedError: NoMethodError: undefined method 'flatten_date_array' for Date:Class
我对方法的定义有误吗?我甚至尝试过在new_from_hash
中移动flatten_date_array
方法,但仍然出现错误。我也尝试在MiniTest中创建一个测试,但也出现了同样的错误。
private不适用于类方法,而是使用self。
class Date
def self.new_from_hash(hash)
self.new self.flatten_date_array hash
end
def self.flatten_date_array(hash)
%w(1 2 3).map { |e| hash["date(#{e}i)"].to_i }
end
end