Sha256: 9ff3b0fde6300dc563e26ee9bc7e27f9811f93ee05e7ed5352588994a56a4f7e

Contents?: true

Size: 846 Bytes

Versions: 3

Compression:

Stored size: 846 Bytes

Contents

require 'spec_helper'

describe Numeric do

  it 'should clamp numbers' do
    5.clamp(1, 3).should == 3
    5.clamp(0, 6).should == 5
    5.clamp(6, 8).should == 6
  end

  it 'should report formatted time accurately' do
    0.to_formatted_time.should eq '00:00'
    (60.75).to_formatted_time.should eq '01:01'
    (673.2).to_formatted_time.should eq '11:13'
  end

  it 'should describe periods accurately' do
    3600.to_period.should eq '1h'
    7260.to_period.should eq '2h 1m'
    (86400 + 10).to_period.should eq '1d 10s'
  end

  it 'should describe periods non-abbreviated' do
    3600.to_period(true, false).should eq '1 hour'
    7260.to_period(true, false).should eq '2 hours, 1 minute'
    (86400 + 10).to_period(true, false).should eq '1 day, 10 seconds'
    (86400 + 1).to_period(true, false).should eq '1 day, 1 second'
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bootstripe-0.2.16 spec/number_additions_spec.rb
bootstripe-0.2.15 spec/number_additions_spec.rb
bootstripe-0.2.14 spec/number_additions_spec.rb