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/lib/shoulda.rb
2008-10-07 08:25:30 -04:00

17 lines
428 B
Ruby

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