unittests/ie_exists_test.rb in watir-1.8.0.rc1 vs unittests/ie_exists_test.rb in watir-1.8.0
- old
+ new
@@ -1,33 +1,16 @@
# test IE#exists?
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..') unless $SETUP_LOADED
require 'unittests/setup'
-class TC_IE_Exists < Test::Unit::TestCase
- tags :fails_on_firefox, :new
- def setup
- @ie = Watir::IE.new
- end
- def teardown
- @ie.close
- end
- def test_exists
- assert(@ie.exists?)
- end
-end
-
class TC_IENotExists < Test::Unit::TestCase
- tags :fails_on_firefox, :new
def setup
@ie = Watir::IE.new
end
- def test_we_closed_it
- @ie.close
- assert_false(@ie.exists?)
- end
+
def test_some_one_else_closed_it
@ie.ie.quit
sleep 0.3 # give it some time to close
assert_false(@ie.exists?)
end
-end
\ No newline at end of file
+end