Simple one-liner tests for common Rails functionality
Go to file
Nick Quaranto 4c95b08450 Merge commit 'dstrelau/1.9' into ruby19 2009-06-16 21:16:20 -04:00
bin convert_to_shoulda_syntax: use Dir::tmpdir instead of hardcoded /tmp 2008-07-30 08:25:25 -04:00
lib Merge commit 'dstrelau/1.9' into ruby19 2009-06-16 21:16:20 -04:00
rails Fixed the Rails initializer to integrate with RSpec when needed 2009-02-04 19:41:08 -05:00
tasks Fix for new shoulda/tasks organization when shoulda is used solely as a plugin [#75] 2008-09-15 09:42:24 -04:00
test Merge commit 'dstrelau/1.9' into ruby19 2009-06-16 21:16:20 -04:00
.autotest fixed foreign key determination (http://tammer.lighthouseapp.com/projects/5807/tickets/8) 2008-01-21 14:30:10 +00:00
.gitignore Added should_create and should_destroy [#190 state:resolved] 2009-05-05 18:16:12 -07:00
CONTRIBUTION_GUIDELINES.rdoc Updated the contribution guidelines to point to Github Issues instead of Lighthouse 2009-06-09 20:37:52 -04:00
MIT-LICENSE converted to the MIT license 2007-11-26 15:18:29 +00:00
README.rdoc Added clarification to README 2009-06-08 11:50:11 -04:00
Rakefile --inline-source is no longer an option in rdoc v2.4 2009-02-28 17:54:02 -05:00
init.rb use the rails standard way of initializing a gem, instead of that RAILS_ROOT check 2008-10-01 17:44:09 -04:00
shoulda.gemspec Bumping 2.10.1 for bugfixes 2009-03-05 14:49:52 -05:00

README.rdoc

= Shoulda - Making tests easy on the fingers and eyes

Shoulda makes it easy to write elegant, understandable, and maintainable tests.  Shoulda consists of test macros, assertions, and helpers added on to the Test::Unit framework.  It's fully compatible with your existing tests, and requires no retooling to use.

Helpers:: #context and #should give you RSpec like test blocks.
          In addition, you get nested contexts and a much more readable syntax.
Macros:: Generate hundreds of lines of Controller and ActiveRecord tests with these powerful macros.
         They get you started quickly, and can help you ensure that your application is conforming to best practices.
Assertions:: Many common rails testing idioms have been distilled into a set of useful assertions.
Matchers:: Rspec-compatible matchers providing the same tests as Shoulda macros.

= Usage

=== Context Helpers (Shoulda::Context)

Stop killing your fingers with all of those underscores...  Name your tests with plain sentences!

  class UserTest < Test::Unit::TestCase
    context "A User instance" do
      setup do
        @user = User.find(:first)
      end

      should "return its full name" do
        assert_equal 'John Doe', @user.full_name
      end

      context "with a profile" do
        setup do
          @user.profile = Profile.find(:first)
        end

        should "return true when sent #has_profile?" do
          assert @user.has_profile?
        end
      end
    end
  end

Produces the following test methods:

  "test: A User instance should return its full name."
  "test: A User instance with a profile should return true when sent #has_profile?."

So readable!

=== ActiveRecord Tests (Shoulda::ActiveRecord::Macros)

Quick macro tests for your ActiveRecord associations and validations:

  class PostTest < Test::Unit::TestCase
    fixtures :all

    should_belong_to :user
    should_have_many :tags, :through => :taggings

    should_validate_uniqueness_of :title
    should_validate_presence_of :body, :message => /wtf/
    should_validate_presence_of :title
    should_validate_numericality_of :user_id
  end

  class UserTest < Test::Unit::TestCase
    should_have_many :posts

    should_not_allow_values_for :email, "blah", "b lah"
    should_allow_values_for :email, "a@b.com", "asdf@asdf.com"
    should_ensure_length_in_range :email, 1..100
    should_ensure_value_in_range :age, 1..100
    should_not_allow_mass_assignment_of :password
  end

Makes TDD so much easier.

=== Controller Tests (Shoulda::Controller::Macros)

Macros to test the most common controller patterns...
  
  class PostsControllerTest < ActionController::TestCase
    context "on GET to :show for first record" do
      setup do
        get :show, :id => 1
      end

      should_assign_to :user
      should_respond_with :success
      should_render_template :show
      should_not_set_the_flash

      should "do something else really cool" do
        assert_equal 1, assigns(:user).id
      end
    end
  end
  
=== Helpful Assertions (Shoulda::Assertions)

More to come here, but have fun with what's there.

  assert_same_elements([:a, :b, :c], [:c, :a, :b])
  assert_contains(['a', '1'], /\d/)
  assert_contains(['a', '1'], 'a')

=== 3rd Party and Application Specific Macros

Any *.rb file under RAILS_ROOT/test/shoulda_macros/ or vendor/(plugins|gems)/gem_name/shoulda_macros/ will be automatically required when you run your tests.  This allows you to distribute macros with your plugins, or to organize the macros inside your application.  Remember to add your macro to Test::Unit::TestCase in the macro file:

  # test/shoulda_macros/security.rb
  class Test::Unit::TestCase
    def self.should_be_denied(opts = {})
      should_set_the_flash_to(opts[:flash] || /Please log in/i)
      should_redirect_to(opts[:redirect]   || 'login_url')
    end
  end

= Rails Installation (Test::Unit)

=== As a Gem

Use this if you prefer to use versioned releases of shoulda.  Specify the gem dependency in your config/environment.rb file:

  Rails::Initializer.run do |config|
    config.gem "thoughtbot-shoulda", :lib => "shoulda", :source => "http://gems.github.com"
  end

Then:

  $ rake gems:install
  $ rake gems:unpack

=== As a Plugin

Use this if you prefer to use the edge version of shoulda:

  $ script/plugin install git://github.com/thoughtbot/shoulda.git

=== As a Plugin (using git submodules)

Use this if you prefer the idea of being able to easily switch between using edge or a tagged version of shoulda:

  $ git submodule add git://github.com/thoughtbot/shoulda.git vendor/plugins/shoulda

= Rails Installation (RSpec)

If you're using Shoulda with RSpec, we recommend that you add config.gem lines
for RSpec and Shoulda in your config/environment/test.rb file, but do not ask
Rails to load the RSpec and Shoulda libraries:

  config.gem 'rspec', :lib => false
  config.gem 'rspec-rails', :lib => false
  config.gem 'thoughtbot-shoulda',
             :lib => false,
             :source => 'http://gems.github.com'

Then require shoulda from your spec/spec_helper.rb file, before Spec::Runner is
configured:

  # requires for RSpec
  require 'shoulda'
  Spec::Runner.configure do |config|
  # ...

You should not need to require anything besides the top-level shoulda library.

= Credits

Shoulda is maintained by {Tammer Saleh}[mailto:tsaleh@thoughtbot.com], and is funded by Thoughtbot[http://www.thoughtbot.com], inc.

= License

Shoulda is Copyright © 2006-2008 Tammer Saleh, Thoughtbot. It is free software, and may be redistributed under the terms specified in the MIT-LICENSE file.