summaryrefslogtreecommitdiffstats
path: root/spec/unit/network/http/webrick.rb
diff options
context:
space:
mode:
authorRick Bradley <rick@rickbradley.com>2007-10-15 12:19:08 -0500
committerRick Bradley <rick@rickbradley.com>2007-10-15 12:19:08 -0500
commit9a179ec3a9df62c6179e7151831c4f07197cfbce (patch)
tree73db44481e976919ee57b98655e2c18a1310b4d7 /spec/unit/network/http/webrick.rb
parente56406f15086eb483c00a2904d8a75518412a905 (diff)
downloadpuppet-9a179ec3a9df62c6179e7151831c4f07197cfbce.tar.gz
puppet-9a179ec3a9df62c6179e7151831c4f07197cfbce.tar.xz
puppet-9a179ec3a9df62c6179e7151831c4f07197cfbce.zip
trivial: WEBRick -> WEBrick, to be more consistent with how the WEBrick ruby classes are named.
Diffstat (limited to 'spec/unit/network/http/webrick.rb')
-rw-r--r--spec/unit/network/http/webrick.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/unit/network/http/webrick.rb b/spec/unit/network/http/webrick.rb
index f414ca11d..b070ec0d6 100644
--- a/spec/unit/network/http/webrick.rb
+++ b/spec/unit/network/http/webrick.rb
@@ -6,15 +6,15 @@
require File.dirname(__FILE__) + '/../../../spec_helper'
require 'puppet/network/http'
-describe Puppet::Network::HTTP::WEBRick, "after initializing" do
+describe Puppet::Network::HTTP::WEBrick, "after initializing" do
it "should not be listening" do
- Puppet::Network::HTTP::WEBRick.new.should_not be_listening
+ Puppet::Network::HTTP::WEBrick.new.should_not be_listening
end
end
-describe Puppet::Network::HTTP::WEBRick, "when turning on listening" do
+describe Puppet::Network::HTTP::WEBrick, "when turning on listening" do
before do
- @server = Puppet::Network::HTTP::WEBRick.new
+ @server = Puppet::Network::HTTP::WEBrick.new
Puppet.stubs(:start)
end
@@ -44,9 +44,9 @@ describe Puppet::Network::HTTP::WEBRick, "when turning on listening" do
it "should be able to specify the port on which webrick will listen"
end
-describe Puppet::Network::HTTP::WEBRick, "when turning off listening" do
+describe Puppet::Network::HTTP::WEBrick, "when turning off listening" do
before do
- @server = Puppet::Network::HTTP::WEBRick.new
+ @server = Puppet::Network::HTTP::WEBrick.new
@server.stubs(:shutdown)
Puppet.stubs(:start).returns(true)
end