summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-01-22 11:27:04 -0800
committerTim Smith <tsmith@chef.io>2018-01-22 11:31:33 -0800
commitd310076da6fe246a413b82601c8a55cd0ebcef0b (patch)
treea574af93ef5037cb61b915b2ddc06efd9ae9a6c2 /spec
parent9439fd6e5da8d87f48ebc1b6de4b7c09c8654c39 (diff)
downloadchef-d310076da6fe246a413b82601c8a55cd0ebcef0b.tar.gz
Rename the OpenSSL mixin to avoid name conflicts
This way people don't have to refactor their code from OpenSSL::Whatever to ::OpenSSL::Whatever Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec')
-rw-r--r--spec/unit/mixin/openssl_helper_spec.rb (renamed from spec/unit/mixin/openssl_spec.rb)6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/unit/mixin/openssl_spec.rb b/spec/unit/mixin/openssl_helper_spec.rb
index 8a0206116c..6873fd8cf2 100644
--- a/spec/unit/mixin/openssl_spec.rb
+++ b/spec/unit/mixin/openssl_helper_spec.rb
@@ -14,11 +14,11 @@
# limitations under the License.
require "spec_helper"
-require "chef/mixin/openssl"
+require "chef/mixin/openssl_helper"
-describe Chef::Mixin::OpenSSL do
+describe Chef::Mixin::OpenSSLHelper do
let(:instance) do
- Class.new { include Chef::Mixin::OpenSSL }.new
+ Class.new { include Chef::Mixin::OpenSSLHelper }.new
end
describe ".included" do