0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 23:31:11 +02:00
discourse-custom-wizard/spec/serializers/custom_wizard/log_serializer_spec.rb

20 Zeilen
550 B
Ruby

2020-11-03 01:24:20 +01:00
# frozen_string_literal: true
require_relative '../../plugin_helper'
2020-11-03 01:24:20 +01:00
describe CustomWizard::LogSerializer do
fab!(:user) { Fabricate(:user) }
2021-03-11 07:30:15 +01:00
2020-11-03 01:24:20 +01:00
it 'should return log attributes' do
CustomWizard::Log.create("First log message")
CustomWizard::Log.create("Second log message")
2021-03-11 07:30:15 +01:00
2020-11-03 01:24:20 +01:00
json_array = ActiveModel::ArraySerializer.new(
CustomWizard::Log.list(0),
each_serializer: CustomWizard::LogSerializer
2021-03-11 07:30:15 +01:00
).as_json
2020-11-03 01:24:20 +01:00
expect(json_array.length).to eq(2)
expect(json_array[0][:message]).to eq("Second log message")
end
2021-03-11 07:30:15 +01:00
end