summaryrefslogtreecommitdiffstats
path: root/spec/integration/network
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2008-06-13 11:27:00 -0500
committerLuke Kanies <luke@madstop.com>2008-06-13 11:27:00 -0500
commit3980323e667443784247234d8b1afa648196a121 (patch)
tree1d7114ce60ae28c40fb2ba7661b857dd5a1910cb /spec/integration/network
parent9fe2b038a5a802abf457a5961aaa3d2f022e2408 (diff)
downloadpuppet-3980323e667443784247234d8b1afa648196a121.tar.gz
puppet-3980323e667443784247234d8b1afa648196a121.tar.xz
puppet-3980323e667443784247234d8b1afa648196a121.zip
Adding ruby interpreter lines to the tests missing them.
Diffstat (limited to 'spec/integration/network')
-rwxr-xr-xspec/integration/network/server/mongrel.rb4
-rwxr-xr-xspec/integration/network/server/webrick.rb4
2 files changed, 6 insertions, 2 deletions
diff --git a/spec/integration/network/server/mongrel.rb b/spec/integration/network/server/mongrel.rb
index 65caf78c9..0603b1133 100755
--- a/spec/integration/network/server/mongrel.rb
+++ b/spec/integration/network/server/mongrel.rb
@@ -1,3 +1,5 @@
+#!/usr/bin/env ruby
+
require File.dirname(__FILE__) + '/../../../spec_helper'
require 'puppet/network/server'
require 'socket'
@@ -43,4 +45,4 @@ describe Puppet::Network::Server do
@server.unlisten if @server.listening?
end
end
-end \ No newline at end of file
+end
diff --git a/spec/integration/network/server/webrick.rb b/spec/integration/network/server/webrick.rb
index 0ab8d89e4..f20ce0860 100755
--- a/spec/integration/network/server/webrick.rb
+++ b/spec/integration/network/server/webrick.rb
@@ -1,3 +1,5 @@
+#!/usr/bin/env ruby
+
require File.dirname(__FILE__) + '/../../../spec_helper'
require 'puppet/network/server'
require 'socket'
@@ -43,4 +45,4 @@ describe Puppet::Network::Server do
end
end
end
-end \ No newline at end of file
+end