spec/number_additions_spec.rb in bootstripe-0.2.11 vs spec/number_additions_spec.rb in bootstripe-0.2.12

- old
+ new

@@ -1,8 +1,14 @@ 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 \ No newline at end of file