negos_app/test/controllers/public/my_account_controller_controller_test.rb
Nicolas Bally 772e87ffb7 initial
2015-11-14 00:08:54 +01:00

20 lines
366 B
Ruby

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