0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 15:21:11 +02:00

DEV: Modify test for errors

Dieser Commit ist enthalten in:
jumagura 2023-10-02 22:26:00 -04:00
Ursprung 779912332a
Commit 98391b565e

Datei anzeigen

@ -15,15 +15,12 @@ describe Topic, type: :model do
user, user,
Guardian.new(user), Guardian.new(user),
valid_attrs.merge( valid_attrs.merge(
title: 'A valid and sufficiently long title for testing',
category: category_with_wizard.id, category: category_with_wizard.id,
raw: 'hello this is a test topic with category with custom fields' title: 'A valid title',
raw: 'hello this is a test topic'
) )
) )
end.to raise_error( end.to raise_error
Discourse::InvalidParameters,
'Category not allowed for topic creation.'
)
end end
end end
@ -35,8 +32,8 @@ describe Topic, type: :model do
Guardian.new(user), Guardian.new(user),
valid_attrs.merge( valid_attrs.merge(
category: category_without_wizard.id, category: category_without_wizard.id,
title: 'Another valid and sufficiently long title for testing', title: 'Another valid title',
raw: 'This is the body of a valid topic' raw: 'This is a valid topic'
) )
) )
end.not_to raise_error end.not_to raise_error