public
Rubygem
Description: Makes tests easy on the fingers and the eyes
Homepage: http://www.thoughtbot.com/projects/shoulda
Clone URL: git://github.com/thoughtbot/shoulda.git
shoulda / lib / shoulda.rb
100644 18 lines (16 sloc) 0.428 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'shoulda/context'
require 'shoulda/proc_extensions'
require 'shoulda/assertions'
require 'shoulda/macros'
require 'shoulda/helpers'
require 'shoulda/rails' if defined? RAILS_ROOT
 
module Test # :nodoc: all
  module Unit
    class TestCase
      extend Thoughtbot::Shoulda
      include ThoughtBot::Shoulda::Assertions
      extend ThoughtBot::Shoulda::Macros
      include ThoughtBot::Shoulda::Helpers
    end
  end
end