WIP adding controller specs base

This commit is contained in:
Tobias Kneuker 2022-09-26 16:42:01 +02:00
parent 5e96efe10d
commit 3ac59d60a9

View file

@ -0,0 +1,12 @@
# frozen_string_literal: true
require 'spec_helper'
describe HomeController do
describe "GET profile" do
it 'shows dashboard for logged in user' do
get :my_profile
expect(response).to have_http_status(:success)
end
end
end