spec/watirspec/elements/uls_spec.rb in watir-7.2.0 vs spec/watirspec/elements/uls_spec.rb in watir-7.2.1

- old
+ new

@@ -1,40 +1,42 @@ # frozen_string_literal: true require 'watirspec_helper' -describe 'Uls' do - before :each do - browser.goto(WatirSpec.url_for('non_control_elements.html')) - end +module Watir + describe UListCollection do + before do + browser.goto(WatirSpec.url_for('non_control_elements.html')) + end - describe 'with selectors' do - it 'returns the matching elements' do - expect(browser.uls(class: 'navigation').to_a).to eq [browser.ul(class: 'navigation')] + describe 'with selectors' do + it 'returns the matching elements' do + expect(browser.uls(class: 'navigation').to_a).to eq [browser.ul(class: 'navigation')] + end end - end - describe '#length' do - it 'returns the number of uls' do - expect(browser.uls.length).to eq 2 + describe '#length' do + it 'returns the number of uls' do + expect(browser.uls.length).to eq 2 + end end - end - describe '#[]' do - it 'returns the ul at the given index' do - expect(browser.uls[0].id).to eq 'navbar' + describe '#[]' do + it 'returns the ul at the given index' do + expect(browser.uls[0].id).to eq 'navbar' + end end - end - describe '#each' do - it 'iterates through uls correctly' do - count = 0 + describe '#each' do + it 'iterates through uls correctly' do + count = 0 - browser.uls.each_with_index do |ul, index| - expect(ul.id).to eq browser.ul(index: index).id - count += 1 - end + browser.uls.each_with_index do |ul, index| + expect(ul.id).to eq browser.ul(index: index).id + count += 1 + end - expect(count).to be > 0 + expect(count).to be > 0 + end end end end