26 lines
495 B
Ruby
26 lines
495 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe Admin::DashboardController do
|
|
render_views
|
|
|
|
before { allow(controller).to receive(:current_user).and_return(build(:admin)) }
|
|
|
|
describe 'GET #show' do
|
|
describe 'with format HTML' do
|
|
before { get :show }
|
|
|
|
expect_http_status(:ok)
|
|
expect_template(:show)
|
|
end
|
|
|
|
describe 'with format JSON' do
|
|
before { get :show, format: :json }
|
|
|
|
expect_json
|
|
expect_http_status(:ok)
|
|
end
|
|
end
|
|
end
|