Sha256: 94f4d755ed200c80d9f3fad99e8ab6d7c6655e00b4a0d293a6f81288f205c539
Contents?: true
Size: 487 Bytes
Versions: 19
Compression:
Stored size: 487 Bytes
Contents
# # Helper that tries to find out what test suite is running (for SimpleCov.command_name) # module SimpleCov::CommandGuesser def self.guess(command) case command when /#{'test/functional/'}/ "Functional Tests" when /#{'test/integration/'}/ "Integration Tests" when /#{'test/'}/ "Unit Tests" when /cucumber/, /features/ "Cucumber Features" when /spec/ "RSpec" else return command end end end
Version data entries
19 entries across 19 versions & 2 rubygems