要使用mocha gem模拟Time.now
我使用以下oneliner。
require 'minitest/autorun'
require 'mocha/mini_test'
require 'time'
class TimeMockTest < Minitest::Test
def test_time_mock
# Mocking Time.now in one line
Time.expects(:now).returns(Time.parse('20:12'))
Time.now
end
end
但是,由于Time.parse()
使用模拟的Time.now()
方法,因此运行此代码会返回以下错误。
NoMethodError: undefined method `year' for nil:NilClass
C:/Ruby22-x64/lib/ruby/2.2.0/time.rb:255:in `make_time'
C:/Ruby22-x64/lib/ruby/2.2.0/time.rb:364:in `parse'
time_mock.rb:8:in `test_time_mock'
你如何用mocha
模拟Time.now?