Commit d4a108a

mo <mo.khan@gmail.com>
2018-03-18 21:06:10
remove bundle exec ruby from test command.
1 parent 6ceb6eb
Changed files (1)
spec
spec/support/shell_helpers.rb
@@ -10,7 +10,7 @@ RSpec.shared_context 'when executing the cli' do
   let(:env) {}
 
   def execute(command, mute: false, env: self.env)
-    full_command = "#{env} bundle exec ruby ./exe/saml-kit #{command} 2>&1"
+    full_command = "#{env} ./exe/saml-kit #{command} 2>&1"
     puts full_command unless mute
     output = `#{full_command}`
     [$CHILD_STATUS, output]