unittests/close_all_test.rb in watir-1.7.1 vs unittests/close_all_test.rb in watir-1.8.0.rc1
- old
+ new
@@ -1,15 +1,15 @@
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', '..') unless $SETUP_LOADED
require 'unittests/setup'
class TC_CloseAllWindows < Watir::TestCase
- def setup
+ def xsetup
@browsers = []
5.times {@browsers << Watir::Browser.new}
end
- def test_close_all_windows
+ def xtest_close_all_windows
assert @browsers.all? {|browser| browser.exists?}
Watir::IE.close_all
assert @browsers.all? {|browser| not browser.exists?}
end