mirror of
https://github.com/discourse/discourse.git
synced 2024-12-05 23:33:43 +08:00
18 lines
639 B
Ruby
18 lines
639 B
Ruby
require 'rails_helper'
|
|
|
|
describe PrettyText do
|
|
it 'supports inserting date' do
|
|
freeze_time
|
|
cooked = PrettyText.cook <<~MD
|
|
[date=2018-05-08 time=22:00 format=LLL timezones="Europe/Paris|America/Los_Angeles"]
|
|
MD
|
|
|
|
expect(cooked).to include('class="discourse-local-date"')
|
|
expect(cooked).to include('data-date="2018-05-08"')
|
|
expect(cooked).to include('data-format="LLL"')
|
|
expect(cooked).to include('data-timezones="Europe/Paris|America/Los_Angeles"')
|
|
expect(cooked).to include('May 8, 2018 3:00 PM (America: Los Angeles)')
|
|
expect(cooked).to include('May 9, 2018 12:00 AM (Europe: Paris)')
|
|
end
|
|
end
|