foodsoft/spec/controllers/home_controller_spec.rb

13 lines
249 B
Ruby
Raw Normal View History

2022-09-26 16:42:01 +02:00
# 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