tiss2go/test/controllers/theses_controller_test.rb
2020-04-21 13:03:59 +02:00

40 lines
724 B
Ruby

require 'test_helper'
class ThesesControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get theses_index_url
assert_response :success
end
test "should get show_basic" do
get theses_show_url
assert_response :success
end
test "should get new" do
get theses_new_url
assert_response :success
end
test "should get edit" do
get theses_edit_url
assert_response :success
end
test "should get create" do
get theses_create_url
assert_response :success
end
test "should get update" do
get theses_update_url
assert_response :success
end
test "should get destroy" do
get theses_destroy_url
assert_response :success
end
end