negos_app/test/controllers/public/my_account_controller_controller_test.rb
2016-02-16 21:09:48 +01:00

20 lines
366 B
Ruby
Executable File

require 'test_helper'
class Public::MyAccountControllerControllerTest < ActionController::TestCase
test "should get index" do
get :index
assert_response :success
end
test "should get edit_infos" do
get :edit_infos
assert_response :success
end
test "should get my_annonces" do
get :my_annonces
assert_response :success
end
end