chore(deps): bump puma from to 5.6.2, rails to 6.1.4.6 (#3969)

This commit is contained in:
dependabot[bot]
2022-02-14 20:09:21 +05:30
committed by GitHub
parent 9c7044c81b
commit f34a2e6115
2 changed files with 61 additions and 60 deletions

View File

@@ -131,11 +131,12 @@ RSpec.describe 'Campaigns API', type: :request do
twilio_inbox = create(:inbox, channel: twilio_sms)
label1 = create(:label, account: account)
label2 = create(:label, account: account)
scheduled_at = 2.days.from_now
post "/api/v1/accounts/#{account.id}/campaigns",
params: {
inbox_id: twilio_inbox.id, title: 'test', message: 'test message',
scheduled_at: 2.days.from_now,
scheduled_at: scheduled_at,
audience: [{ type: 'Label', id: label1.id }, { type: 'Label', id: label2.id }]
},
headers: administrator.create_new_auth_token,
@@ -145,7 +146,7 @@ RSpec.describe 'Campaigns API', type: :request do
response_data = JSON.parse(response.body, symbolize_names: true)
expect(response_data[:campaign_type]).to eq('one_off')
expect(response_data[:scheduled_at].present?).to eq true
expect(response_data[:scheduled_at]).to eq(2.days.from_now.to_i)
expect(response_data[:scheduled_at]).to eq(scheduled_at.to_i)
expect(response_data[:audience].pluck(:id)).to include(label1.id, label2.id)
end
end