heartcombo--simple_form/test/test_helper.rb

99 lines
2.2 KiB
Ruby
Raw Normal View History

2009-11-18 12:45:35 -05:00
require 'rubygems'
2011-02-11 06:45:35 -05:00
require 'bundler/setup'
2009-11-18 18:50:43 -05:00
2010-07-06 08:07:24 -04:00
require 'test/unit'
require 'mocha'
2010-02-06 14:41:35 -05:00
require 'active_model'
2009-11-18 18:50:43 -05:00
require 'action_controller'
2010-03-19 08:29:24 -04:00
require 'action_view'
require 'action_view/template'
2011-02-11 06:45:35 -05:00
# Rails 3.0.4 is missing this "deprecation" require.
require 'active_support/core_ext/module/deprecation'
2009-11-18 18:50:43 -05:00
require 'action_view/test_case'
2011-04-27 14:55:03 -04:00
module Rails
def self.env
ActiveSupport::StringInquirer.new("test")
end
end
2010-07-06 08:07:24 -04:00
$:.unshift File.expand_path("../../lib", __FILE__)
require 'simple_form'
2009-12-09 18:18:29 -05:00
require "rails/generators/test_case"
require 'generators/simple_form/install_generator'
Dir["#{File.dirname(__FILE__)}/support/*.rb"].each { |f| require f }
2009-12-08 08:48:31 -05:00
I18n.default_locale = :en
2009-11-18 18:50:43 -05:00
country_select = "#{File.dirname(__FILE__)}/support/country_select/lib"
if File.exists?(country_select)
$:.unshift country_select
require 'country_select'
else
raise "Could not find country_select plugin in test/support. Please execute git submodule update --init."
end
2009-12-08 08:48:31 -05:00
class ActionView::TestCase
include MiscHelpers
2010-06-07 01:30:58 -04:00
include SimpleForm::ActionViewExtensions::FormHelper
2009-11-19 16:26:16 -05:00
setup :set_controller
setup :set_response
2009-12-08 08:48:31 -05:00
setup :setup_new_user
2009-11-19 16:26:16 -05:00
def set_controller
@controller = MockController.new
end
def set_response
@response = MockResponse.new(self)
end
2009-12-09 21:22:53 -05:00
def setup_new_user(options={})
@user = User.new({
:id => 1,
2009-12-08 08:48:31 -05:00
:name => 'New in Simple Form!',
:description => 'Hello!',
2011-03-25 09:25:09 -04:00
:created_at => Time.now
2009-12-09 21:22:53 -05:00
}.merge(options))
2010-06-17 18:12:36 -04:00
@validating_user = ValidatingUser.new({
:id => 1,
:name => 'New in Simple Form!',
:description => 'Hello!',
2012-01-03 13:10:50 -05:00
:home_picture => 'Home picture',
:created_at => Time.now,
:age => 19,
:amount => 15,
:attempts => 1,
2011-04-29 15:23:42 -04:00
:company => [1]
}.merge(options))
2010-09-05 12:46:02 -04:00
@other_validating_user = OtherValidatingUser.new({
:id => 1,
:name => 'New in Simple Form!',
:description => 'Hello!',
:created_at => Time.now,
:age => 19,
:company => 1
}.merge(options))
2009-12-08 08:48:31 -05:00
end
2009-11-19 16:26:16 -05:00
def protect_against_forgery?
false
end
2009-12-08 08:48:31 -05:00
def user_path(*args)
'/users'
end
2009-12-10 15:03:27 -05:00
alias :users_path :user_path
2009-12-08 08:48:31 -05:00
alias :super_user_path :user_path
alias :validating_user_path :user_path
alias :validating_users_path :user_path
2010-09-05 12:46:02 -04:00
alias :other_validating_user_path :user_path
2009-11-19 16:26:16 -05:00
end