debian-mirror-gitlab/spec/helpers/time_helper_spec.rb

36 lines
895 B
Ruby
Raw Normal View History

2015-09-25 12:07:36 +05:30
require 'spec_helper'
2015-10-24 18:46:33 +05:30
describe TimeHelper do
2016-08-24 12:49:21 +05:30
describe "#time_interval_in_words" do
2015-09-25 12:07:36 +05:30
it "returns minutes and seconds" do
intervals_in_words = {
100 => "1 minute 40 seconds",
2016-08-24 12:49:21 +05:30
100.32 => "1 minute 40 seconds",
2015-09-25 12:07:36 +05:30
121 => "2 minutes 1 second",
3721 => "62 minutes 1 second",
0 => "0 seconds"
}
intervals_in_words.each do |interval, expectation|
2016-08-24 12:49:21 +05:30
expect(time_interval_in_words(interval)).to eq(expectation)
2015-09-25 12:07:36 +05:30
end
end
end
2016-08-24 12:49:21 +05:30
describe "#duration_in_numbers" do
2015-09-25 12:07:36 +05:30
it "returns minutes and seconds" do
2016-09-13 17:45:13 +05:30
durations_and_expectations = {
100 => "01:40",
121 => "02:01",
3721 => "01:02:01",
0 => "00:00",
42 => "00:42"
2015-09-25 12:07:36 +05:30
}
2016-09-13 17:45:13 +05:30
durations_and_expectations.each do |duration, expectation|
expect(duration_in_numbers(duration)).to eq(expectation)
2015-09-25 12:07:36 +05:30
end
end
end
end