summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2016-05-09 17:13:13 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2016-05-10 08:06:45 -0700
commit29364f75f484c78b0c0b9062d7158425882439f8 (patch)
tree5cbe3ab7b1f36872afb5632b42fee79d1dde209a
parentfbcda756d4e4532411aff6c5263829f67b23cefa (diff)
downloadchef-29364f75f484c78b0c0b9062d7158425882439f8.tar.gz
WIP
-rw-r--r--kitchen-tests/Gemfile.lock2
-rw-r--r--kitchen-tests/test/integration/webapp/serverspec/localhost/default_spec.rb8
2 files changed, 5 insertions, 5 deletions
diff --git a/kitchen-tests/Gemfile.lock b/kitchen-tests/Gemfile.lock
index 2c553c7713..c0f5a812a7 100644
--- a/kitchen-tests/Gemfile.lock
+++ b/kitchen-tests/Gemfile.lock
@@ -11,7 +11,7 @@ GIT
GIT
remote: git://github.com/test-kitchen/test-kitchen.git
- revision: 6811fa27896a48439dfc24655ce2b6aad9d095df
+ revision: 1abb6995e54558b90dc0894601ca14b8dac9157c
branch: lcg/parallel-scp-upload
specs:
test-kitchen (1.8.0)
diff --git a/kitchen-tests/test/integration/webapp/serverspec/localhost/default_spec.rb b/kitchen-tests/test/integration/webapp/serverspec/localhost/default_spec.rb
index 992e4f7683..2a8ab8a214 100644
--- a/kitchen-tests/test/integration/webapp/serverspec/localhost/default_spec.rb
+++ b/kitchen-tests/test/integration/webapp/serverspec/localhost/default_spec.rb
@@ -110,16 +110,16 @@ describe "webapp::default", :end_to_end => true do
end
end
- describe "http://localhost/index.html" do
+ describe "http://127.0.0.1/index.html" do
include_examples "a webpage" do
- let(:uri) { URI.parse("http://localhost/index.html") }
+ let(:uri) { URI.parse("http://127.0.0.1/index.html") }
let(:content) { "Hello, World!" }
end
end
- describe "http://localhost/index.php" do
+ describe "http://127.0.0.1/index.php" do
include_examples "a webpage" do
- let(:uri) { URI.parse("http://localhost/index.php") }
+ let(:uri) { URI.parse("http://127.0.0.1/index.php") }
let(:content) { "Hello, World!" }
end
end