mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:05:24 +08:00
fix the EnsurePostUploadsExistence job spec
This commit is contained in:
parent
a385f6c48a
commit
64ec4a6a1b
|
@ -15,14 +15,12 @@ describe Jobs::EnsurePostUploadsExistence do
|
|||
expect(field.value).to eq(upload.url)
|
||||
end
|
||||
|
||||
it 'should not create post custom fields' do
|
||||
it 'should create post custom field with nil value' do
|
||||
post = Fabricate(:post, cooked: "A sample post <a href='#{upload.url}'> <img src='#{optimized.url}'>")
|
||||
|
||||
expect {
|
||||
described_class.new.execute({})
|
||||
}.not_to change {
|
||||
PostCustomField.count
|
||||
}
|
||||
field = PostCustomField.last
|
||||
expect(field.name).to eq(Jobs::EnsurePostUploadsExistence::MISSING_UPLOADS)
|
||||
expect(field.value).to eq(nil)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user