Convert specs to RSpec 3.1.7 syntax with Transpec
[puppet-modules/puppetlabs-apt.git] / spec / unit / facter / apt_update_last_success_spec.rb
1 require 'spec_helper'
2
3 describe 'apt_update_last_success fact' do
4   subject { Facter.fact(:apt_update_last_success).value }
5   after(:each) { Facter.clear }
6
7   describe 'on Debian based distro which has not yet created the update-success-stamp file' do
8     before {
9       Facter.fact(:osfamily).stubs(:value).returns 'Debian'
10       File.stubs(:exists?).returns false
11     }
12     it 'should have a value of -1' do
13       is_expected.to eq(-1)
14     end
15   end
16
17   describe 'on Debian based distro which has created the update-success-stamp' do
18     before {
19       Facter.fact(:osfamily).stubs(:value).returns 'Debian'
20       File.stubs(:exists?).returns true
21       File.stubs(:mtime).returns 1407660561
22     }
23     it 'should have the value of the mtime of the file' do
24       is_expected.to eq(1407660561)
25     end
26   end
27
28 end