2018-07-30 11:45:49 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 02:09:01 -04:00
|
|
|
RSpec.describe MoveToProjectEntity do
|
2018-07-30 11:45:49 -04:00
|
|
|
describe '#as_json' do
|
|
|
|
let(:project) { build(:project, id: 1) }
|
|
|
|
|
|
|
|
subject { described_class.new(project).as_json }
|
|
|
|
|
|
|
|
it 'includes the project ID' do
|
|
|
|
expect(subject[:id]).to eq(project.id)
|
|
|
|
end
|
|
|
|
|
2020-11-11 07:09:06 -05:00
|
|
|
it 'includes the human-readable full path' do
|
2018-07-30 11:45:49 -04:00
|
|
|
expect(subject[:name_with_namespace]).to eq(project.name_with_namespace)
|
|
|
|
end
|
2020-11-11 07:09:06 -05:00
|
|
|
|
|
|
|
it 'includes the full path' do
|
|
|
|
expect(subject[:full_path]).to eq(project.full_path)
|
|
|
|
end
|
2018-07-30 11:45:49 -04:00
|
|
|
end
|
|
|
|
end
|