27 lines
563 B
Ruby
27 lines
563 B
Ruby
|
# 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
|
||
|
is_expected.to contain_exactly(
|
||
|
:id,
|
||
|
:name,
|
||
|
:created_at,
|
||
|
:email,
|
||
|
:username,
|
||
|
:last_activity_on,
|
||
|
:avatar_url,
|
||
|
:badges,
|
||
|
:projects_count,
|
||
|
:actions
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|