mirror of
https://github.com/thoughtbot/shoulda-matchers.git
synced 2022-11-09 12:01:38 -05:00
17 lines
428 B
Ruby
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
|