trilhos 4 – test_helper

temos o arquivo: lib / auth_helper.rb que inclui algumas funções. Precisamos incluir essa biblioteca em nossos testes.

Rails 3

test / test_helper.rb

class ActiveSupport::TestCase
include
AuthHelper
end

No Rails 4 isso não funciona.

Rails 4

test / test_helper.rb

autoload :AuthHelper, 'auth_helper'

class ActiveSupport::TestCase
include
AuthHelper
end