2024-12-14 16:50:41 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe REST::Admin::IpBlockSerializer do
|
|
|
|
subject { serialized_record_json(record, described_class) }
|
|
|
|
|
2024-12-17 14:38:57 +01:00
|
|
|
context 'when timestamps are populated' do
|
2024-12-14 16:50:41 +01:00
|
|
|
let(:record) { Fabricate(:ip_block, expires_at: DateTime.new(2024, 11, 28, 16, 20, 0)) }
|
|
|
|
|
|
|
|
it 'parses as RFC 3339 datetime' do
|
2024-12-17 14:38:57 +01:00
|
|
|
expect(subject)
|
|
|
|
.to include(
|
|
|
|
'created_at' => match_api_datetime_format,
|
|
|
|
'expires_at' => match_api_datetime_format
|
|
|
|
)
|
2024-12-14 16:50:41 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|