mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 12:39:53 +01:00
Test creating question when recipient allows long questions
This commit is contained in:
parent
3a6814b908
commit
7aacb1a364
1 changed files with 14 additions and 3 deletions
|
@ -57,11 +57,22 @@ describe UseCase::Question::Create do
|
|||
end
|
||||
end
|
||||
|
||||
context "content is too long" do
|
||||
context "content is over 512 characters long" do
|
||||
let(:content) { "a" * 513 }
|
||||
|
||||
it "raises an error" do
|
||||
expect { subject }.to raise_error(Errors::QuestionTooLong)
|
||||
context "recipient does not allow long questions" do
|
||||
it "raises an error" do
|
||||
expect { subject }.to raise_error(Errors::QuestionTooLong)
|
||||
end
|
||||
end
|
||||
|
||||
context "recipient allows long questions" do
|
||||
before do
|
||||
target_user.profile.allow_long_questions = true
|
||||
target_user.profile.save
|
||||
end
|
||||
|
||||
it_behaves_like "creates the question"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue