require 'spec_helper' describe Numeric do it 'should report 00:00' do 0.to_formatted_time.should eq '00:00' end it 'should report 01:01' do (60.75).to_formatted_time.should eq '01:01' end it 'should report 11:13' do (673.2).to_formatted_time.should eq '11:13' end end