move to only one pipedrive account

This commit is contained in:
clemkeirua 2019-08-28 11:37:41 +02:00
parent 3857e88648
commit 4032fc61e3
3 changed files with 7 additions and 33 deletions

View file

@ -1,10 +1,10 @@
require 'spec_helper'
describe BizDev, lib: true do
let(:first_biz_dev_id) { BizDev::BIZ_DEV_IDS.first }
let(:first_biz_dev_id) { BizDev::PIPEDRIVE_ID }
let(:non_biz_dev_id) { first_biz_dev_id - 1 }
it { expect(BizDev::BIZ_DEV_MAPPING).not_to include(non_biz_dev_id) }
it { expect(BizDev::PIPEDRIVE_ID).not_to eq(non_biz_dev_id) }
describe '#full_name' do
subject { described_class.full_name(administration_id) }