mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-17 15:50:13 +01:00
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:
parent
0600756bbf
commit
0f7d6f7a1d
602 changed files with 47788 additions and 29 deletions
46
vendor/plugins/rspec-rails/lib/spec/rails/example.rb
vendored
Normal file
46
vendor/plugins/rspec-rails/lib/spec/rails/example.rb
vendored
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
dir = File.dirname(__FILE__)
|
||||
|
||||
require 'spec/rails/example/assigns_hash_proxy'
|
||||
|
||||
require "spec/rails/example/render_observer"
|
||||
require "spec/rails/example/rails_example_group"
|
||||
require "spec/rails/example/model_example_group"
|
||||
require "spec/rails/example/functional_example_group"
|
||||
require "spec/rails/example/controller_example_group"
|
||||
require "spec/rails/example/helper_example_group"
|
||||
require "spec/rails/example/view_example_group"
|
||||
|
||||
module Spec
|
||||
module Rails
|
||||
# Spec::Rails::Example extends Spec::Example (RSpec's core Example module) to provide
|
||||
# Rails-specific contexts for describing Rails Models, Views, Controllers and Helpers.
|
||||
#
|
||||
# == Model Examples
|
||||
#
|
||||
# These are the equivalent of unit tests in Rails' built in testing. Ironically (for the traditional TDD'er) these are the only specs that we feel should actually interact with the database.
|
||||
#
|
||||
# See Spec::Rails::Example::ModelExampleGroup
|
||||
#
|
||||
# == Controller Examples
|
||||
#
|
||||
# These align somewhat with functional tests in rails, except that they do not actually render views (though you can force rendering of views if you prefer). Instead of setting expectations about what goes on a page, you set expectations about what templates get rendered.
|
||||
#
|
||||
# See Spec::Rails::Example::ControllerExampleGroup
|
||||
#
|
||||
# == View Examples
|
||||
#
|
||||
# This is the other half of Rails functional testing. View specs allow you to set up assigns and render
|
||||
# a template. By assigning mock model data, you can specify view behaviour with no dependency on a database
|
||||
# or your real models.
|
||||
#
|
||||
# See Spec::Rails::Example::ViewExampleGroup
|
||||
#
|
||||
# == Helper Examples
|
||||
#
|
||||
# These let you specify directly methods that live in your helpers.
|
||||
#
|
||||
# See Spec::Rails::Example::HelperExampleGroup
|
||||
module Example
|
||||
end
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue