<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -26,7 +26,7 @@ This plugin does four things:
 
 win32-open3[http://raa.ruby-lang.org/project/win32-open3/] is needed if you're
 on Windows and want to run your tests as a Rake task 
-(see &lt;tt&gt;test_acceptance&lt;/tt&gt;), i.e. you don't have to install it but it's 
+(see &lt;tt&gt;test:acceptance&lt;/tt&gt;), i.e. you don't have to install it but it's 
 recommended.
 
 You can build it from source or install the binary:
@@ -117,7 +117,7 @@ this by setting &lt;tt&gt;environments&lt;/tt&gt;, such as:
    - test
    - development
 
-== &lt;tt&gt;test_acceptance&lt;/tt&gt;
+== &lt;tt&gt;test:acceptance&lt;/tt&gt;
 
 You can run all your Selenium tests as a Rake task.
 
@@ -135,7 +135,7 @@ Now you're all set. First start a server:
 
 Then run the tests:
 
- rake test_acceptance
+ rake test:acceptance
 
 Now it should work, otherwise let me know!
 
@@ -143,7 +143,7 @@ Now it should work, otherwise let me know!
 
 === Standalone mode
 
-More work is needed on &lt;tt&gt;test_acceptance&lt;/tt&gt; on Windows to be able to start 
+More work is needed on &lt;tt&gt;test:acceptance&lt;/tt&gt; on Windows to be able to start 
 the server when needed.
 
 === user_extension.js
@@ -173,4 +173,4 @@ the Selenese format.
 
 == Contact
 
-Jonas Bengtsson, jonas.b@home.se, http://andthennothing.net
\ No newline at end of file
+Jonas Bengtsson, jonas.b@home.se, http://andthennothing.net</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -134,7 +134,7 @@ the north frame contains your test case.
 &lt;p&gt;
 &lt;a href=&quot;http://raa.ruby-lang.org/project/win32-open3/&quot;&gt;win32-open3&lt;/a&gt; is
 needed if you&amp;#8217;re on Windows and want to run your tests as a Rake task
-(see &lt;tt&gt;test_acceptance&lt;/tt&gt;), i.e. you don&amp;#8217;t have to install it but
+(see &lt;tt&gt;test:acceptance&lt;/tt&gt;), i.e. you don&amp;#8217;t have to install it but
 it&amp;#8217;s recommended.
 &lt;/p&gt;
 &lt;p&gt;
@@ -261,7 +261,7 @@ change this by setting &lt;tt&gt;environments&lt;/tt&gt;, such as:
    - test
    - development
 &lt;/pre&gt;
-&lt;h2&gt;&lt;tt&gt;test_acceptance&lt;/tt&gt;&lt;/h2&gt;
+&lt;h2&gt;&lt;tt&gt;test:acceptance&lt;/tt&gt;&lt;/h2&gt;
 &lt;p&gt;
 You can run all your Selenium tests as a Rake task.
 &lt;/p&gt;
@@ -286,7 +286,7 @@ Now you&amp;#8217;re all set. First start a server:
 Then run the tests:
 &lt;/p&gt;
 &lt;pre&gt;
- rake test_acceptance
+ rake test:acceptance
 &lt;/pre&gt;
 &lt;p&gt;
 Now it should work, otherwise let me know!
@@ -294,7 +294,7 @@ Now it should work, otherwise let me know!
 &lt;h2&gt;Todo&lt;/h2&gt;
 &lt;h3&gt;Standalone mode&lt;/h3&gt;
 &lt;p&gt;
-More work is needed on &lt;tt&gt;test_acceptance&lt;/tt&gt; on Windows to be able to
+More work is needed on &lt;tt&gt;test:acceptance&lt;/tt&gt; on Windows to be able to
 start the server when needed.
 &lt;/p&gt;
 &lt;h3&gt;user_extension.js&lt;/h3&gt;
@@ -368,4 +368,4 @@ href=&quot;http://andthennothing.net&quot;&gt;andthennothing.net&lt;/a&gt;
 &lt;/div&gt;
 
 &lt;/body&gt;
-&lt;/html&gt;
\ No newline at end of file
+&lt;/html&gt;</diff>
      <filename>doc/files/README.html</filename>
    </modified>
    <modified>
      <diff>@@ -30,7 +30,7 @@ class SeleniumController &lt; ActionController::Base
 
   def support_file
     if params[:filename].empty?
-      redirect_to :filename =&gt; 'TestRunner.html'
+      redirect_to :filename =&gt; 'TestRunner.html', :test =&gt; 'tests'
       return
     end
 
@@ -51,4 +51,4 @@ class SeleniumController &lt; ActionController::Base
     
     render :file =&gt; view_path('record.rhtml'), :layout =&gt; layout_path
   end
-end
\ No newline at end of file
+end</diff>
      <filename>lib/controllers/selenium_controller.rb</filename>
    </modified>
    <modified>
      <diff>@@ -103,7 +103,7 @@ module SeleniumOnRails
         puts
         puts &quot;Starting #{browser}&quot;
         log = log_file browser
-        command = &quot;\&quot;#{path}\&quot; \&quot;http://localhost:#{@port}#{TEST_RUNNER_URL}?auto=true&amp;resultsUrl=postResults/#{log}\&quot;&quot;
+        command = &quot;\&quot;#{path}\&quot; \&quot;http://localhost:#{@port}#{TEST_RUNNER_URL}?test=tests&amp;auto=true&amp;resultsUrl=postResults/#{log}\&quot;&quot;
         @browser = start_subprocess command    
         log_path log
       end</diff>
      <filename>lib/selenium_on_rails/acceptance_test_runner.rb</filename>
    </modified>
    <modified>
      <diff>@@ -34,7 +34,7 @@ module SeleniumOnRails
       def find_selenium_path
         # with checked out selenium
         selenium_path = SeleniumOnRailsConfig.get :selenium_path, File.expand_path(File.join(RAILS_ROOT, 'vendor/selenium'))
-        ['', 'selenium', 'javascript'].each do |subdir|
+        ['', 'core', 'selenium', 'javascript'].each do |subdir|
           vendor_selenium = File.join selenium_path, subdir
           return vendor_selenium if File.exist?(File.join(vendor_selenium, 'TestRunner.html'))
         end
@@ -46,4 +46,4 @@ module SeleniumOnRails
       end
        
   end
-end
\ No newline at end of file
+end</diff>
      <filename>lib/selenium_on_rails/paths.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,5 +1,8 @@
-desc 'Run Selenium tests in all browsers'
-task :test_acceptance do
-  require File.dirname(__FILE__) + '/../lib/selenium_on_rails/acceptance_test_runner'
-  SeleniumOnRails::AcceptanceTestRunner.new.run
-end
\ No newline at end of file
+task :test_acceptance =&gt; 'test:acceptance'
+namespace :test do
+  desc 'Run Selenium tests in all browsers'
+  task :acceptance do
+    require File.dirname(__FILE__) + '/../lib/selenium_on_rails/acceptance_test_runner'
+    SeleniumOnRails::AcceptanceTestRunner.new.run
+  end
+end</diff>
      <filename>tasks/test_acceptance.rake</filename>
    </modified>
    <modified>
      <diff>@@ -21,7 +21,7 @@ class SeleniumSupportTest &lt; Test::Unit::TestCase
   
   def test_default_file
     get :support_file, :filename =&gt; ''
-    assert_redirected_to :filename =&gt; 'TestRunner.html'
+    assert_redirected_to :filename =&gt; 'TestRunner.html', :test =&gt; 'tests'
   end
     
   def test_missing_file</diff>
      <filename>test/selenium_support_test.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>0fc604c7b09174b3493dff9d175907f99ad30dbb</id>
    </parent>
  </parents>
  <author>
    <name>Jonas</name>
    <email>Jonas@9274398c-e119-0410-8437-aa71ef7847aa</email>
  </author>
  <url>http://github.com/paytonrules/selenium-on-rails/commit/c5b37d289c9a03844d4a0fae9363e8573fda80f5</url>
  <id>c5b37d289c9a03844d4a0fae9363e8573fda80f5</id>
  <committed-date>2006-07-31T15:03:55-07:00</committed-date>
  <authored-date>2006-07-31T15:03:55-07:00</authored-date>
  <message> r818@D600 (orig r12):  dev | 2006-05-12 23:36:33 +0100
 Added initial support for Selenium Core 0.7
 Renamed test_acceptance to test:acceptance


git-svn-id: https://svn.openqa.org/svn/selenium-on-rails/trunk@13 9274398c-e119-0410-8437-aa71ef7847aa</message>
  <tree>24d4008e268c3176b34d2bd2f34ebd39ea42c53f</tree>
  <committer>
    <name>Jonas</name>
    <email>Jonas@9274398c-e119-0410-8437-aa71ef7847aa</email>
  </committer>
</commit>
