bievre_reno_app/test/controllers/public/label_site_controller_test.rb
Caroline Girard d727d313b7 initial
2018-09-11 13:49:55 +02:00

30 lines
510 B
Ruby

require 'test_helper'
class Public::LabelSiteControllerTest < ActionController::TestCase
test "should get index" do
get :index
assert_response :success
end
test "should get list" do
get :list
assert_response :success
end
test "should get labels" do
get :labels
assert_response :success
end
test "should get entreprises" do
get :entreprises
assert_response :success
end
test "should get contact" do
get :contact
assert_response :success
end
end