Sha256: cf7ebc4b8f425dcf9eacd6f4c5fcfc612f74fa3a9d58a148d39dde4f6d74862d
Contents?: true
Size: 415 Bytes
Versions: 24
Compression:
Stored size: 415 Bytes
Contents
# protip to prevent execution of shell commands during testsuite # see http://stackoverflow.com/questions/1628586/mock-system-call-in-ruby module Kernel def execute_with_stub(cmd) if cmd.include?('git') puts "WARNING: stubbing command execution within tests of command: #{cmd}", :red else execute_without_stub(cmd) end end alias execute_without_stub ` alias ` execute_with_stub end
Version data entries
24 entries across 24 versions & 1 rubygems