mailr/test/functional/core_controller_test.rb
Wojciech Todryk 37f548ce46 devel
2011-07-27 20:34:30 +02:00

15 lines
243 B
Ruby
Executable file

require 'test_helper'
class CoreControllerTest < ActionController::TestCase
test "should get login" do
get :login
assert_response :success
end
test "should get logout" do
get :logout
assert_response :success
end
end