0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-14 22:02:53 +01:00
discourse-custom-wizard/spec/serializers/custom_wizard/log_serializer_spec.rb

32 Zeilen
846 B
Ruby

2020-11-03 01:24:20 +01:00
# frozen_string_literal: true
describe CustomWizard::LogSerializer do
2024-10-16 13:52:03 +02:00
fab!(:user)
2021-03-11 07:30:15 +01:00
2024-10-16 13:52:03 +02:00
it "should return log attributes" do
CustomWizard::Log.create(
"first-test-wizard",
"perform_first_action",
"first_test_user",
"First log message",
1.day.ago,
)
CustomWizard::Log.create(
"second-test-wizard",
"perform_second_action",
"second_test_user",
"Second log message",
)
2021-03-11 07:30:15 +01:00
2024-10-16 13:52:03 +02:00
json_array =
ActiveModel::ArraySerializer.new(
CustomWizard::Log.list(0).logs,
each_serializer: CustomWizard::LogSerializer,
).as_json
2020-11-03 01:24:20 +01:00
expect(json_array.length).to eq(2)
2021-08-30 15:45:57 +02:00
expect(json_array[0][:action]).to eq("perform_second_action")
2024-10-16 13:52:03 +02:00
expect(json_array[0][:username]).to eq("second_test_user")
2020-11-03 01:24:20 +01:00
expect(json_array[0][:message]).to eq("Second log message")
end
2021-03-11 07:30:15 +01:00
end