expect(message.to_s).toeq('The size of this repository (15 MB) exceeds the limit of 10 MB by 5 MB.')
end
end
describe'#commit_error'do
it'returns the correct message'do
expect(message.commit_error).toeq("Your changes could not be committed, #{base_message}")
end
end
describe'#merge_error'do
it'returns the correct message'do
expect(message.merge_error).toeq("This merge request cannot be merged, #{base_message}")
end
end
describe'#push_error'do
it'returns the correct message'do
expect(message.push_error).toeq("Your push has been rejected, #{base_message}. #{message.more_info_message}")
end
end
describe'#new_changes_error'do
it'returns the correct message'do
expect(message.new_changes_error).toeq("Your push to this repository would cause it to exceed the size limit of 10 MB so it has been rejected. #{message.more_info_message}")