Newer
Older
Website-backend / test / controllers / users_controller_test.rb
@lukas lukas on 3 Apr 2022 282 bytes initial commit
require "test_helper"

class UsersControllerTest < ActionDispatch::IntegrationTest
  test "should get authenticate" do
    get users_authenticate_url
    assert_response :success
  end

  test "should get presalt" do
    get users_presalt_url
    assert_response :success
  end
end