1
0
Fork 0
mirror of https://github.com/thoughtbot/shoulda-matchers.git synced 2022-11-09 12:01:38 -05:00
thoughtbot--shoulda-matchers/test
2009-03-05 14:21:01 -05:00
..
fixtures Fixed should_have_many regression [#60] 2008-08-31 12:14:16 -04:00
functional Fixed should_return_from_session with a nil value [#171 state:committed] 2009-03-05 14:21:01 -05:00
matchers Fixed should_return_from_session with a nil value [#171 state:committed] 2009-03-05 14:21:01 -05:00
other Reorganized matcher tests and files 2009-01-27 18:01:28 -05:00
rails_root Set the tests to run against Rails 2.2.2, as Rails 2.3 is currently unsupported 2009-03-04 10:02:39 -05:00
unit Fixed the low_message and high_message options for should_ensure_value_in_range [#160 state:committed] 2009-02-25 16:50:21 -05:00
fail_macros.rb Deprecated should_protect_attributes in favor of should_not_allow_mass_assignment_of 2009-01-31 15:50:03 -05:00
model_builder.rb Fixed the route builder 2009-02-07 17:45:28 -05:00
README When in a rails environment, only load shoulda when RAILS_ENV equals 'test' [#134] 2009-01-19 11:29:54 -05:00
rspec_test.rb Added ActionController matchers in the RSpec includes 2009-03-03 16:40:57 -05:00
test_helper.rb converting should_have_index to use have_index matcher 2009-01-27 18:10:58 -05:00

The Shoulda test suite (in particular - the tests that test shoulda)

Quick overview:

The test directory contains the following files and subdirectories:

* rails_root - contains the stripped down rails application that the tests run against.  The rails root contains:
** the models, controllers, and views defined under app/
** the test.rb environment file
** a migration file for each model
** a shoulda initializer that simulates loading the plugin but without relying on vendor/plugins
* fixtures - contain the sample DB data for each model
* functional - controller tests for each of the controllers under rails_root/app
* unit - model tests for each of the models under rails_root/app
* other - tests for the shoulda contexts, should statements, and assertions
* test_helper.rb - responsible for initializing the test environment
** sets the rails_env to test
** sets the rails_root
** runs all the migrations against the in-memory sqlite3 db
** adds some magic to load the right fixture files

In order to add a new model (or controller) to the test suite:

* add that model to rails_root/app/models
* add a migration for that model
* add a fixture file
* add a test for that file under test/units

Dependencies:

* Rails gem installed in the host system
* A working sqlite3 installation.

If you have problems running these tests, please notify the mailing list:  shoulda@googlegroups.com

- Tammer Saleh <tsaleh@thoughtbot.com>