Sha256: c79f66e43057126c80b46e86af0c6074b44754afd535e10b8427b88c6ccf6ab6
Contents?: true
Size: 1.04 KB
Versions: 21
Compression:
Stored size: 1.04 KB
Contents
require 'rails_helper' RSpec.describe Bobot::Event::Optin do let :payload do { 'sender' => { 'id' => '3' }, 'recipient' => { 'id' => '3' }, 'timestamp' => 145_776_419_762_7, 'optin' => { 'ref' => 'PASS_THROUGH_PARAM' } } end subject { Bobot::Event::Optin.new(payload) } describe '.messaging' do it 'returns the original payload' do expect(subject.messaging).to eq(payload) end end describe '.sender' do it 'returns the sender' do expect(subject.sender).to eq(payload['sender']) end end describe '.recipient' do it 'returns the recipient' do expect(subject.recipient).to eq(payload['recipient']) end end describe '.sent_at' do it 'returns when the postback was sent' do expect(subject.sent_at).to eq(Time.zone.at(payload['timestamp'] / 1000)) end end describe '.ref' do it 'returns the data-ref defined with the entry point' do expect(subject.ref).to eq(payload['optin']['ref']) end end end
Version data entries
21 entries across 21 versions & 1 rubygems