Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
14 Zeilen
458 B
Ruby
14 Zeilen
458 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative '../../plugin_helper'
|
|
|
|
describe CustomWizard::ProSerializer do
|
|
it 'should return pro attributes' do
|
|
pro = CustomWizard::Pro.new
|
|
serialized = described_class.new(pro, root: false)
|
|
|
|
expect(serialized.server).to eq(pro.server)
|
|
expect(serialized.authentication.class).to eq(CustomWizard::ProAuthentication)
|
|
expect(serialized.subscription.class).to eq(CustomWizard::ProSubscription)
|
|
end
|
|
end
|