<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre, #msg p { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[170] trunk/spec/watir_compatability_spec.rb: </title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd>170</dd>
<dt>Author</dt> <dd>arex</dd>
<dt>Date</dt> <dd>2008-05-30 03:54:46 -0400 (Fri, 30 May 2008)</dd>
</dl>

<h3>Log Message</h3>
<pre></pre>

<h3>Removed Paths</h3>
<ul>
<li><a href="#trunkspecwatir_compatability_specrb">trunk/spec/watir_compatability_spec.rb</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkspecwatir_compatability_specrb"></a>
<div class="delfile"><h4>Deleted: trunk/spec/watir_compatability_spec.rb (169 => 170)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/spec/watir_compatability_spec.rb        2008-05-30 07:54:18 UTC (rev 169)
+++ trunk/spec/watir_compatability_spec.rb        2008-05-30 07:54:46 UTC (rev 170)
</span><span class="lines">@@ -1,257 +0,0 @@
</span><del>-require File.dirname(__FILE__) + '/spec_helper.rb'
-
-describe IE do
-  before :each do
-    @browser = IE.new
-  end
-  
-  # Class methods
-  it &quot;should respond to .speed&quot; do
-    IE.should respond_to(&quot;speed&quot;)
-  end
-
-  it &quot;should respond to .speed=&quot; do
-    IE.should respond_to(&quot;speed=&quot;)
-  end
-
-  it &quot;should respond to .set_fast_speed&quot; do
-    IE.should respond_to(&quot;set_fast_speed&quot;)
-  end
-
-  it &quot;should respond to .set_slow_speed&quot; do
-    IE.should respond_to(&quot;set_slow_speed&quot;)
-  end
-
-  it &quot;should respond to .attach_timeout&quot; do
-    IE.should respond_to(&quot;attach_timeout&quot;)
-  end
-
-  it &quot;should respond to .attach_timeout=&quot; do
-    IE.should respond_to(&quot;attach_timeout=&quot;)
-  end
-
-  it &quot;should respond to .reset_attach_timeout&quot; do
-    IE.should respond_to(&quot;reset_attach_timeout&quot;)
-  end
-
-  it &quot;should respond to .visible&quot; do
-    IE.should respond_to(&quot;visible&quot;)
-  end
-
-  it &quot;should respond to .each&quot; do
-    IE.should respond_to(&quot;each&quot;)
-  end
-
-  it &quot;should respond to .quit&quot; do
-    IE.should respond_to(&quot;quit&quot;)
-  end
-
-  it &quot;should alias .start_window to .start&quot; do
-    IE.should respond_to(&quot;start&quot;)
-  end
-  
-  # Instance methods
-  it &quot;should respond to #visible&quot; do
-    @browser.should respond_to(&quot;visible&quot;)
-  end
-
-  it &quot;should respond to #visible=&quot; do
-    @browser.should respond_to(&quot;visible=&quot;)
-  end
-
-  it &quot;should respond to #wait&quot; do
-    @browser.should respond_to(&quot;wait&quot;)
-  end
-
-  describe &quot;#bring_to_front&quot; do
-    it &quot;should return true&quot; do
-      @browser.bring_to_front.should be_true
-    end
-  end
-  
-  describe &quot;#checkBox&quot; do
-    it &quot;should behave like #checkbox&quot; do
-      pending
-    end
-  end
-  
-end
-
-describe Button do
-  
-  before :all do
-    @browser = IE.new
-    
-  end
-
-  before :each do
-    @browser.goto(TEST_HOST + &quot;/forms_with_input_elements.html&quot;)    
-  end
-  
-  describe &quot;#click_no_wait&quot; do
-    it &quot;should behave like #click&quot; do
-      @browser.button(:id, 'new_user_submit').click_no_wait
-      @browser.text.should include(&quot;You posted the following content:&quot;)
-    end
-  end
-  
-end
-
-describe Link do
-  
-  before :all do
-    @browser = IE.new
-    
-  end
-
-  before :each do
-    @browser.goto(TEST_HOST + &quot;/non_control_elements.html&quot;)    
-  end
-  
-  describe &quot;#click_no_wait&quot; do
-    it &quot;should behave like #click&quot; do
-      @browser.link(:text, &quot;Link 3&quot;).click_no_wait
-      @browser.text.include?(&quot;User administration&quot;).should be_true      
-    end
-  end
-  
-end
-  
-describe Image do
-  
-  before :all do
-    @browser = IE.new
-    
-  end
-
-  before :each do
-    @browser.goto(TEST_HOST + &quot;/images.html&quot;)
-  end
-  
-  describe &quot;#hasLoaded?&quot; do
-    it &quot;should behave like #loaded?&quot; do
-      @browser.image(:name, 'circle').hasLoaded?.should be_true
-    end
-  end
-
-  describe &quot;#has_loaded?&quot; do
-    it &quot;should behave like #loaded&quot; do
-      @browser.image(:name, 'circle').has_loaded?.should be_true
-    end
-  end
-  
-  describe &quot;#fileSize&quot; do
-    it &quot;should behave like #file_size&quot; do
-      @browser.image(:id, 'square').fileSize.should == 788
-    end
-  end
-  
-  describe &quot;#fileCreatedDate&quot; do
-    it &quot;should behave like #file_created_date&quot; do
-      image = @browser.image(:index, 2)
-      path = File.dirname(__FILE__) + &quot;/html/#{image.src}&quot;
-      image.file_created_date.to_i.should == File.mtime(path).to_i
-    end
-  end
-  
-end
-
-describe RadioCheckCommon do
-  before :all do
-    @browser = IE.new
-    
-  end
-
-  before :each do
-    @browser.goto(TEST_HOST + &quot;/forms_with_input_elements.html&quot;)
-  end
-  
-  describe &quot;#is_set?&quot; do
-    it &quot;should behave like #set?&quot; do
-      @browser.radio(:id, &quot;new_user_newsletter_yes&quot;).is_set?.should be_true
-    end
-  end
-  
-  describe &quot;#isSet?&quot; do
-    it &quot;should behave like #set?&quot; do
-      @browser.radio(:id, &quot;new_user_newsletter_yes&quot;).isSet?.should be_true
-    end
-  end
-
-  describe &quot;#get_state&quot; do
-    it &quot;should behave like #set?&quot; do
-      @browser.checkbox(:id, &quot;new_user_interests_books&quot;).get_state.should be_true
-    end
-  end
-
-  describe &quot;#getState&quot; do
-    it &quot;should behave like #set?&quot; do
-      @browser.checkbox(:id, &quot;new_user_interests_books&quot;).getState.should be_true
-    end
-  end
-  
-end
-
-describe SelectList do
-  before :all do
-    @browser = Celerity::IE.new
-  end
-
-  before :each do
-    @browser.goto(TEST_HOST + &quot;/forms_with_input_elements.html&quot;)
-  end
-  
-  describe &quot;#getSelectedItems&quot; do
-    it &quot;should behave like #get_selected_items&quot; do
-      @browser.select_list(:name, &quot;new_user_country&quot;).getSelectedItems.should == [&quot;Norway&quot;]
-      @browser.select_list(:name, &quot;new_user_languages&quot;).getSelectedItems.should == [&quot;English&quot;, &quot;Norwegian&quot;]
-    end
-  end
-  
-  describe &quot;#getAllContents&quot; do
-    it &quot;should behave like #get_all_contents&quot; do
-      @browser.select_list(:name, &quot;new_user_country&quot;).getAllContents.should == [&quot;Denmark&quot; ,&quot;Norway&quot; , &quot;Sweden&quot; , &quot;United Kingdom&quot;, &quot;USA&quot;]
-    end
-  end
-  
-  describe &quot;#clearSelection&quot; do
-    it &quot;should behave like #clear selection&quot; do
-      @browser.select_list(:name, &quot;new_user_languages&quot;).clearSelection
-      @browser.select_list(:name, &quot;new_user_languages&quot;).getSelectedItems.should be_empty
-    end
-  end
-  
-  describe &quot;#select_value&quot; do
-    it &quot;should behave like #select&quot; do
-      @browser.select_list(:name, &quot;new_user_country&quot;).select_value(&quot;Denmark&quot;)
-      @browser.select_list(:name, &quot;new_user_country&quot;).getSelectedItems.should == [&quot;Denmark&quot;]
-    end
-  end
-  
-end
-
-describe TextField do
-  before :all do
-    @browser = IE.new
-  end
-
-  before :each do
-    @browser.goto(TEST_HOST + &quot;/forms_with_input_elements.html&quot;)
-  end
-  
-  describe &quot;#dragContentsTo&quot; do
-    it &quot;should behave like #drag_contents_to&quot; do
-      @browser.text_field(:name, &quot;new_user_first_name&quot;).set(&quot;Smith&quot;)
-      @browser.text_field(:name, &quot;new_user_first_name&quot;).dragContentsTo(:name, &quot;new_user_last_name&quot;)
-      @browser.text_field(:name, &quot;new_user_first_name&quot;).value.should be_empty
-      @browser.text_field(:id, &quot;new_user_last_name&quot;).value.should == &quot;Smith&quot;
-    end
-  end
-  
-  describe &quot;#getContents&quot; do
-    it &quot;should behave like #get_contents&quot; do
-      @browser.text_field(:name, &quot;new_user_occupation&quot;).getContents.should == &quot;Developer&quot;
-    end
-  end
-  
-end
</del><span class="cx">\ No newline at end of file
</span></span></pre>
</div>
</div>

</body>
</html>