mirror of
https://github.com/zhigang1992/tsemple.git
synced 2026-01-12 17:52:57 +08:00
12 lines
378 B
Ruby
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
|