15 lines
342 B
Ruby
15 lines
342 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'spec_helper'
|
||
|
|
||
|
describe MoveToProjectSerializer do
|
||
|
describe '#represent' do
|
||
|
it 'includes the name and name with namespace' do
|
||
|
project = build(:project, id: 1)
|
||
|
output = described_class.new.represent(project)
|
||
|
|
||
|
expect(output).to include(:id, :name_with_namespace)
|
||
|
end
|
||
|
end
|
||
|
end
|