2021-09-07 14:06:13 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require_relative '../../../plugin_helper'
|
|
|
|
|
2021-09-24 11:58:42 +02:00
|
|
|
describe CustomWizard::Subscription::SubscriptionSerializer do
|
|
|
|
it 'should return subscription attributes' do
|
|
|
|
sub = CustomWizard::Subscription::Subscription.new(OpenStruct.new(type: 'community', updated_at: Time.now))
|
2021-09-07 14:06:13 +02:00
|
|
|
serialized = described_class.new(sub, root: false).as_json
|
|
|
|
|
|
|
|
expect(serialized[:active]).to eq(true)
|
|
|
|
expect(serialized[:type]).to eq('community')
|
|
|
|
expect(serialized[:updated_at]).to eq(sub.updated_at)
|
|
|
|
end
|
|
|
|
end
|