如果我有以下内容:
LogEntry.format_time(3600).should eql("01:00:00")
怎么做?
答案 0 :(得分:2)
在LogEntry模型中添加以下内容。
class LogEntry < ActiveRecord::Base
#your properties and attributes
def self.format_time(seconds)
Time.at(seconds).utc.strftime("%H:%M:%S")
end
end