Sha256: 154b5824da1de83bf917c7e8ef84b82667a542d7c5a968ce145ac2ab5410623c

Contents?: true

Size: 1.06 KB

Versions: 4

Compression:

Stored size: 1.06 KB

Contents

require_relative 'unit_helper'

describe Watir::Container do
  before { @container = Object.new.extend(Watir::Container) }

  describe '#extract_selector' do
    before do
      def @container.public_extract_selector(*args)
        extract_selector(*args)
      end
    end

    it 'converts 2-arg selector into a hash' do
      expect {
        expect(@container.public_extract_selector([:how, 'what'])).to eq Hash[how: 'what']
      }.to have_deprecated_selector_parameters
    end

    it 'returns the hash given' do
      expect(@container.public_extract_selector([{how: 'what'}])).to eq Hash[how: 'what']
    end

    it 'returns an empty hash if given no args' do
      expect(@container.public_extract_selector([])).to eq Hash[]
    end

    it 'raises ArgumentError if given 1 arg which is not a Hash' do
      expect { @container.public_extract_selector([:how]) }.to raise_error(ArgumentError)
    end

    it 'raises ArgumentError if given > 2 args' do
      expect { @container.public_extract_selector([:how, 'what', 'value']) }.to raise_error(ArgumentError)
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
watir-6.19.1 spec/unit/container_spec.rb
watir-6.19.0 spec/unit/container_spec.rb
watir-6.18.0 spec/unit/container_spec.rb
watir-6.17.0 spec/unit/container_spec.rb