mirror of
https://github.com/discourse/discourse.git
synced 2024-12-13 15:23:43 +08:00
27 lines
720 B
Ruby
27 lines
720 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
describe PostRevision do
|
||
|
it "can deserialize old YAML" do
|
||
|
# Date objects are stored in core post_revisions prior
|
||
|
# to https://github.com/discourse/discourse/commit/e7f251c105
|
||
|
# and are also stored by some plugins
|
||
|
|
||
|
pr = Fabricate(:post_revision)
|
||
|
DB.exec("UPDATE post_revisions SET modifications = ?", <<~YAML)
|
||
|
---
|
||
|
last_version_at:
|
||
|
- 2013-12-12 21:40:13.225239000 Z
|
||
|
- 2013-12-12 22:10:51.433689320 Z
|
||
|
YAML
|
||
|
pr.reload
|
||
|
expect(pr.modifications).to eq(
|
||
|
{
|
||
|
"last_version_at" => [
|
||
|
Time.parse("2013-12-12 21:40:13.225239000 Z"),
|
||
|
Time.parse("2013-12-12 22:10:51.433689320 Z")
|
||
|
]
|
||
|
}
|
||
|
)
|
||
|
end
|
||
|
end
|