spec/watirspec/areas_spec.rb in watir-webdriver-0.0.6 vs spec/watirspec/areas_spec.rb in watir-webdriver-0.0.7

- old
+ new

@@ -1,7 +1,7 @@ # encoding: utf-8 -require File.dirname(__FILE__) + '/spec_helper' +require File.expand_path('spec_helper', File.dirname(__FILE__)) describe "Areas" do before :each do browser.goto(WatirSpec.files + "/images.html") @@ -19,13 +19,19 @@ end end describe "#each" do it "iterates through areas correctly" do + count = 0 + browser.areas.each_with_index do |a, index| a.id.should == browser.area(:index, index).id a.title.should == browser.area(:index, index).title + + count += 1 end + + count.should > 0 end end end