jipe_app/test/controllers/public/label_site_controller_test.rb
2017-08-14 10:53:30 +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