Files
plottservice/test/controllers/profiles_controller_test.rb
2024-09-02 14:43:38 +02:00

19 lines
365 B
Ruby

require "test_helper"
class ProfilesControllerTest < ActionDispatch::IntegrationTest
test "should get show" do
get profiles_show_url
assert_response :success
end
test "should get edit" do
get profiles_edit_url
assert_response :success
end
test "should get destroy" do
get profiles_destroy_url
assert_response :success
end
end