summaryrefslogtreecommitdiff
path: root/spec/unit/network/http_spec.rb
blob: 4a149d3a8235704acdaa164587e96de0b649e254 (plain)
1
2
3
4
5
6
7
8
9
10
#! /usr/bin/env ruby
require 'spec_helper'
require 'puppet/network/http'

describe Puppet::Network::HTTP do
  it 'defines an http_pool context' do
    pool = Puppet.lookup(:http_pool)
    expect(pool).to be_a(Puppet::Network::HTTP::NoCachePool)
  end
end