Files
tsemple/test/helpers/application_helper_test.rb
2014-03-04 14:13:17 +08:00

12 lines
378 B
Ruby

require 'test_helper'
class ApplicationHelperTest < ActionView::TestCase
test "return_to should return right path" do
assert_equal nil, return_to_path('/')
assert_equal '/?page=2', return_to_path('/?page=2')
assert_equal nil, return_to_path('/login')
assert_equal nil, return_to_path('/signup')
assert_equal '/topics', return_to_path('/topics')
end
end