Sha256: 36be827869d042aec63c524ea49a3fb312e6c6a377598e0abf09b4f8865b7e7c

Contents?: true

Size: 1.67 KB

Versions: 9

Compression:

Stored size: 1.67 KB

Contents

module WatirSpec
  module Guards
    class << self
      def guards
        @guards ||= Hash.new { |hash, key| hash[key] = [] }
      end

      def record(guard_name, impls, data)
        guards[impls] << {name: guard_name, data: data}
      end

      def report
        gs = WatirSpec.implementation.matching_guards_in(guards)
        str = "WatirSpec guards for this implementation: \n"

        if gs.empty?
          "\tnone."
        else
          gs.each do |guard|
            guard[:data][:file] = guard[:data][:file][%r{\/spec\/(.*):}, 1]
            guard_name = "#{guard[:name]}:".ljust(15)
            str << " \t#{guard_name} #{guard[:data].inspect}\n"
          end
          Watir.logger.warn str, ids: [:guard_names]
        end
      end
    end # class << self

    private

    def deviates_on(*impls)
      Guards.record :deviates, impls, file: caller(1..1).first
      return yield if WatirSpec.unguarded?

      yield if WatirSpec.implementation.matches_guard?(impls)
    end

    def not_compliant_on(*impls)
      Guards.record :not_compliant, impls, file: caller(1..1).first
      return yield if WatirSpec.unguarded?

      yield unless WatirSpec.implementation.matches_guard?(impls)
    end

    def compliant_on(*impls)
      Guards.record :compliant, impls, file: caller(1..1).first
      return yield if WatirSpec.unguarded?

      yield if WatirSpec.implementation.matches_guard?(impls)
    end

    def bug(key, *impls)
      Guards.record :bug, impls, file: caller(1..1).first, key: key
      return yield if WatirSpec.unguarded?

      yield if impls.any? && !WatirSpec.implementation.matches_guard?(impls)
    end
  end
end

class Object
  include WatirSpec::Guards
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
watir-6.16.5 lib/watirspec/guards.rb
watir-6.16.4 lib/watirspec/guards.rb
watir-6.16.3 lib/watirspec/guards.rb
watir-6.16.2 lib/watirspec/guards.rb
watir-6.16.1 lib/watirspec/guards.rb
watir-6.16.0 lib/watirspec/guards.rb
watir-6.15.1 lib/watirspec/guards.rb
watir-6.15.0 lib/watirspec/guards.rb
watir-6.14.0 lib/watirspec/guards.rb