blob: 61a951bcec1bbcad8a482e0b9ebdf85854f1de6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet/indirector/envelope'
describe Puppet::Indirector::Envelope do
before do
@instance = Object.new
@instance.extend(Puppet::Indirector::Envelope)
end
describe "when testing if it is expired" do
it "should return false if there is no expiration set" do
@instance.should_not be_expired
end
it "should return true if the current date is after the expiration date" do
@instance.expiration = Time.now - 10
@instance.should be_expired
end
it "should return false if the current date is prior to the expiration date" do
@instance.expiration = Time.now + 10
@instance.should_not be_expired
end
it "should return false if the current date is equal to the expiration date" do
now = Time.now
Time.stubs(:now).returns(now)
@instance.expiration = now
@instance.should_not be_expired
end
end
end
|