ksylvest/specifier

View on GitHub
lib/specifier/matcher/base.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module Specifier
  module Matcher
    class Base
      attr_accessor :expected

      def match?(expected)
        self.expected = expected
      end
    end
  end
end