spec/spec_helper.rb in conjur-cli-6.2.1 vs spec/spec_helper.rb in conjur-cli-6.2.2
- old
+ new
@@ -2,11 +2,14 @@
require "bundler/setup"
require 'tempfile'
require 'ostruct'
require "simplecov"
-SimpleCov.start
-
+
+SimpleCov.start do
+ command_name "#{ENV['RUBY_VERSION']}"
+end
+
def post_response(id, attributes = {})
attributes[:id] = id
OpenStruct.new({
headers: { location: [ collection_url, id ].join('/') },