2020-12-04 19:10:01 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require "spec_helper"
|
|
|
|
|
|
|
|
RSpec.describe Admin::UserSerializer do
|
|
|
|
let(:resource) { build(:user) }
|
|
|
|
|
|
|
|
subject { described_class.new.represent(resource).keys }
|
|
|
|
|
|
|
|
context 'when there is a single object provided' do
|
|
|
|
it 'contains important elements for the admin user table' do
|
2021-04-13 20:10:39 -04:00
|
|
|
is_expected.to include(
|
2020-12-04 19:10:01 -05:00
|
|
|
:id,
|
|
|
|
:name,
|
|
|
|
:created_at,
|
|
|
|
:email,
|
|
|
|
:username,
|
|
|
|
:last_activity_on,
|
|
|
|
:avatar_url,
|
2021-02-01 16:09:15 -05:00
|
|
|
:note,
|
2020-12-04 19:10:01 -05:00
|
|
|
:badges,
|
|
|
|
:projects_count,
|
|
|
|
:actions
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|