Sha256: bc70024551d03648fd09d500ab9e27bf5581ce4bdd0f96563aad6f98ea6ed528
Contents?: true
Size: 1.04 KB
Versions: 26
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 { described_class.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
26 entries across 26 versions & 1 rubygems