Sha256: d92c8b52cef1286eb107b4dbba9fe21c5519509ec474ea9188d1a76ed10e9a1e

Contents?: true

Size: 378 Bytes

Versions: 1

Compression:

Stored size: 378 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
        warn "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

1 entries across 1 versions & 1 rubygems

Version Path
m-1.6.2 lib/m/runners/unsupported_framework.rb