Added Rspec and Webrat plugins and started porting Selenium on Rails tests to Rspec Plain Text Stories driving Webrat driving Selenium.

This commit is contained in:
Luke Melia 2008-06-18 02:57:57 -04:00
parent 0600756bbf
commit 0f7d6f7a1d
602 changed files with 47788 additions and 29 deletions

View file

@ -0,0 +1,46 @@
dir = File.dirname(__FILE__)
$LOAD_PATH.unshift(File.expand_path("#{dir}/../rspec/lib"))
$LOAD_PATH.unshift(File.expand_path("#{dir}/../spec_resources/controllers"))
$LOAD_PATH.unshift(File.expand_path("#{dir}/../spec_resources/helpers"))
require File.expand_path("#{dir}/../../../../spec/spec_helper")
require File.expand_path("#{dir}/../spec_resources/controllers/render_spec_controller")
require File.expand_path("#{dir}/../spec_resources/controllers/rjs_spec_controller")
require File.expand_path("#{dir}/../spec_resources/controllers/redirect_spec_controller")
require File.expand_path("#{dir}/../spec_resources/controllers/action_view_base_spec_controller")
require File.expand_path("#{dir}/../spec_resources/helpers/explicit_helper")
require File.expand_path("#{dir}/../spec_resources/helpers/more_explicit_helper")
require File.expand_path("#{dir}/../spec_resources/helpers/view_spec_helper")
require File.expand_path("#{dir}/../spec_resources/helpers/plugin_application_helper")
ActionController::Routing.controller_paths << "#{dir}/../spec_resources/controllers"
module Spec
module Rails
module Example
class ViewExampleGroupController
set_view_path File.join(File.dirname(__FILE__), "..", "spec_resources", "views")
end
end
end
end
def fail()
raise_error(Spec::Expectations::ExpectationNotMetError)
end
def fail_with(message)
raise_error(Spec::Expectations::ExpectationNotMetError,message)
end
class Proc
def should_pass
lambda { self.call }.should_not raise_error
end
end
ActionController::Routing::Routes.draw do |map|
map.resources :rspec_on_rails_specs
map.connect 'custom_route', :controller => 'custom_route_spec', :action => 'custom_route'
map.connect ":controller/:action/:id"
end