karim_app/test/controllers/public/label_site_controller_test.rb
Nicolas Bally a0a3cfd6fe initial
2018-06-11 01:40:28 +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