Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / strftime_spec.rb
1 require 'spec_helper'
2
3 describe 'strftime' do
4   it 'exists' do
5     expect(Puppet::Parser::Functions.function('strftime')).to eq('function_strftime')
6   end
7
8   it 'raises a ParseError if there is less than 1 arguments' do
9     expect { scope.function_strftime([]) }.to(raise_error(Puppet::ParseError))
10   end
11
12   it 'using %s should be higher then when I wrote this test' do
13     result = scope.function_strftime(['%s'])
14     expect(result.to_i).to(be > 1_311_953_157)
15   end
16
17   it 'using %s should be greater than 1.5 trillion' do
18     result = scope.function_strftime(['%s'])
19     expect(result.to_i).to(be > 1_500_000_000)
20   end
21
22   it 'returns a date when given %Y-%m-%d' do
23     result = scope.function_strftime(['%Y-%m-%d'])
24     expect(result).to match(%r{^\d{4}-\d{2}-\d{2}$})
25   end
26 end