Sha256: a869957864632d710fd9ca25ca575518be968da3e4250b3eb3305d3aa9cbd2f9
Contents?: true
Size: 386 Bytes
Versions: 7
Compression:
Stored size: 386 Bytes
Contents
module M module Runners class UnsupportedFramework < Base def suites not_supported [] end def run(_test_arguments) not_supported end private def not_supported STDERR.puts "This test framework is not supported! Please open up an issue at https://github.com/qrush/m !" false end end end end
Version data entries
7 entries across 7 versions & 1 rubygems