summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Terceiro <terceiro@debian.org>2015-06-14 15:58:58 -0300
committerAntonio Terceiro <terceiro@debian.org>2015-06-14 17:02:21 -0300
commit08bc88af9d9482ef28c06e6e89d335604a99493f (patch)
treecdfd46077a57408087f2acf1e8a79c7318530e90
parenteb78e23269692086421b35c23857064df8535b34 (diff)
downloadchef-zero-08bc88af9d9482ef28c06e6e89d335604a99493f.tar.gz
server_spec: add missing require on net/http
Otherwise several examples crash when being run directly with `rake spec`.
-rw-r--r--spec/server_spec.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/server_spec.rb b/spec/server_spec.rb
index 558ef35..d46084f 100644
--- a/spec/server_spec.rb
+++ b/spec/server_spec.rb
@@ -1,4 +1,5 @@
require 'chef_zero/server'
+require 'net/http'
require 'uri'
describe ChefZero::Server do