source: other-projects/hathitrust/vagrant-hadoop-cluster/trunk/modules/stdlib/spec/functions/time_spec.rb@ 30903

Last change on this file since 30903 was 30903, checked in by davidb, 8 years ago

Vagrant provisioning files for a 4-node Hadoop cluster. See README.txt for more details

  • Property svn:executable set to *
File size: 937 bytes
Line 
1require 'spec_helper'
2
3describe 'time' do
4 it { is_expected.not_to eq(nil) }
5 it { is_expected.to run.with_params('a', '').and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
6
7 context 'when running at a specific time' do
8 before(:each) {
9 # get a value before stubbing the function
10 test_time = Time.utc(2006, 10, 13, 8, 15, 11)
11 Time.expects(:new).with().returns(test_time).once
12 }
13 it { is_expected.to run.with_params().and_return(1160727311) }
14 it { is_expected.to run.with_params('').and_return(1160727311) }
15 it { is_expected.to run.with_params([]).and_return(1160727311) }
16 it { is_expected.to run.with_params({}).and_return(1160727311) }
17 it { is_expected.to run.with_params('foo').and_return(1160727311) }
18 it { is_expected.to run.with_params('UTC').and_return(1160727311) }
19 it { is_expected.to run.with_params('America/New_York').and_return(1160727311) }
20 end
21end
Note: See TracBrowser for help on using the repository browser.