测试中阻断Time

方法中的一个产生当时时间的方法

current_time = Time.new;
time = current_time.strftime('%y.%m.%d %H:%M')

这个是将时间戳转换为字符串

写测试的时候需要阻断这个时间
阻断这个产生时间的方法用stub方法
Time.stub(:new).and_return(Time.mktime(2013,8,24,11,22))
stub阻断的方法,and_return将这个值赋给这个阻断的方法的返回值,

mktime()函数将时间参数转换为时间戳

你可能感兴趣的:(测试中阻断Time)