1
0
Fork 0
mirror of https://github.com/thoughtbot/shoulda-matchers.git synced 2022-11-09 12:01:38 -05:00

Removed General module and added Helpers module

This commit is contained in:
Ryan McGeary 2008-08-31 22:19:08 -04:00
parent 1d1c5e1ba8
commit ecc2725de3
3 changed files with 17 additions and 18 deletions

View file

@ -2,6 +2,7 @@ require 'shoulda/context'
require 'shoulda/proc_extensions'
require 'shoulda/assertions'
require 'shoulda/macros'
require 'shoulda/helpers'
module Test # :nodoc: all
module Unit
@ -9,11 +10,11 @@ module Test # :nodoc: all
extend Thoughtbot::Shoulda
include ThoughtBot::Shoulda::Assertions
extend ThoughtBot::Shoulda::Macros
include ThoughtBot::Shoulda::Helpers
end
end
end
require 'shoulda/general'
require 'shoulda/active_record'
require 'shoulda/controller'
require 'shoulda/action_mailer'
@ -35,19 +36,3 @@ possible_config_paths.each do |config_file|
end
require 'shoulda/color' if shoulda_options[:color]
module Test # :nodoc: all
module Unit
class TestCase
include ThoughtBot::Shoulda::General
end
end
end
module ActionController #:nodoc: all
module Integration
class Session
include ThoughtBot::Shoulda::General
end
end
end

View file

@ -13,3 +13,17 @@ module Test # :nodoc: all
end
end
end
require 'shoulda/active_record/assertions'
require 'shoulda/action_mailer/assertions'
module ActionController #:nodoc: all
module Integration
class Session
include ThoughtBot::Shoulda::Assertions
include ThoughtBot::Shoulda::Helpers
include ThoughtBot::Shoulda::ActiveRecord::Assertions
include ThoughtBot::Shoulda::ActionMailer::Assertions
end
end
end

View file

@ -1,6 +1,6 @@
module ThoughtBot # :nodoc:
module Shoulda # :nodoc:
module General
module Helpers
# Prints a message to stdout, tagged with the name of the calling method.
def report!(msg = "")
puts("#{caller.first}: #{msg}")