yuku-t/duck_testing

View on GitHub
lib/duck_testing/type/base.rb

Summary

Maintainability
A
0 mins
Test Coverage
module DuckTesting
  module Type
    class Base
      def match?(_object)
        fail NotImplementedError
      end

      def to_s
        fail NotImplementedError
      end
    end
  end
end