Commit c5f05f9

mo <mo.khan@gmail.com>
2018-12-02 20:48:29
include helper in support file
1 parent f7826b4
Changed files (2)
spec/support/certificate_helper.rb
@@ -5,3 +5,6 @@ module CertificateHelper
     ::Xml::Kit::SelfSignedCertificate.new.create(passphrase: passphrase)
   end
 end
+RSpec.configure do |config|
+  config.include CertificateHelper
+end
spec/spec_helper.rb
@@ -23,5 +23,4 @@ RSpec.configure do |config|
   config.expect_with :rspec do |c|
     c.syntax = :expect
   end
-  config.include CertificateHelper
 end