This commit is contained in:
KMY 2024-09-09 09:06:49 +09:00
parent 218cb37fe3
commit 941e0f06ec
3 changed files with 17 additions and 16 deletions

View file

@ -51,7 +51,7 @@ RSpec.describe 'Antennas' do
subject subject
expect(response).to have_http_status(200) expect(response).to have_http_status(200)
expect(body_as_json).to match_array(expected_response) expect(response.parsed_body).to match_array(expected_response)
end end
end end
@ -68,7 +68,7 @@ RSpec.describe 'Antennas' do
subject subject
expect(response).to have_http_status(200) expect(response).to have_http_status(200)
expect(body_as_json).to eq({ expect(response.parsed_body).to match(
id: antenna.id.to_s, id: antenna.id.to_s,
title: antenna.title, title: antenna.title,
with_media_only: antenna.with_media_only, with_media_only: antenna.with_media_only,
@ -80,8 +80,8 @@ RSpec.describe 'Antennas' do
accounts_count: 0, accounts_count: 0,
domains_count: 0, domains_count: 0,
tags_count: 0, tags_count: 0,
keywords_count: 0, keywords_count: 0
}) )
end end
context 'when the antenna belongs to a different user' do context 'when the antenna belongs to a different user' do
@ -116,7 +116,7 @@ RSpec.describe 'Antennas' do
subject subject
expect(response).to have_http_status(200) expect(response).to have_http_status(200)
expect(body_as_json).to match(a_hash_including(title: 'my antenna', ltl: true)) expect(response.parsed_body).to match(a_hash_including(title: 'my antenna', ltl: true))
expect(Antenna.where(account: user.account).count).to eq(1) expect(Antenna.where(account: user.account).count).to eq(1)
end end
@ -150,7 +150,7 @@ RSpec.describe 'Antennas' do
expect(response).to have_http_status(200) expect(response).to have_http_status(200)
antenna.reload antenna.reload
expect(body_as_json).to eq({ expect(response.parsed_body).to match(
id: antenna.id.to_s, id: antenna.id.to_s,
title: antenna.title, title: antenna.title,
with_media_only: antenna.with_media_only, with_media_only: antenna.with_media_only,
@ -162,8 +162,8 @@ RSpec.describe 'Antennas' do
accounts_count: 0, accounts_count: 0,
domains_count: 0, domains_count: 0,
tags_count: 0, tags_count: 0,
keywords_count: 0, keywords_count: 0
}) )
end end
def change_antenna_title def change_antenna_title

View file

@ -41,7 +41,7 @@ RSpec.describe 'Circles' do
subject subject
expect(response).to have_http_status(200) expect(response).to have_http_status(200)
expect(body_as_json).to match_array(expected_response) expect(response.parsed_body).to match_array(expected_response)
end end
end end
@ -58,10 +58,10 @@ RSpec.describe 'Circles' do
subject subject
expect(response).to have_http_status(200) expect(response).to have_http_status(200)
expect(body_as_json).to eq({ expect(response.parsed_body).to match(
id: circle.id.to_s, id: circle.id.to_s,
title: circle.title, title: circle.title
}) )
end end
context 'when the circle belongs to a different user' do context 'when the circle belongs to a different user' do
@ -96,7 +96,7 @@ RSpec.describe 'Circles' do
subject subject
expect(response).to have_http_status(200) expect(response).to have_http_status(200)
expect(body_as_json).to match(a_hash_including(title: 'my circle')) expect(response.parsed_body).to match(a_hash_including(title: 'my circle'))
expect(Circle.where(account: user.account).count).to eq(1) expect(Circle.where(account: user.account).count).to eq(1)
end end
@ -127,10 +127,10 @@ RSpec.describe 'Circles' do
expect(response).to have_http_status(200) expect(response).to have_http_status(200)
circle.reload circle.reload
expect(body_as_json).to eq({ expect(response.parsed_body).to match(
id: circle.id.to_s, id: circle.id.to_s,
title: circle.title, title: circle.title
}) )
end end
it 'updates the circle title' do it 'updates the circle title' do

View file

@ -8,6 +8,7 @@ RSpec.describe 'Invites' do
let(:user) { Fabricate :user } let(:user) { Fabricate :user }
before do before do
UserRole.everyone.update(permissions: UserRole::FLAGS[:invite_users])
host! 'localhost:3000' # TODO: Move into before for all system specs? host! 'localhost:3000' # TODO: Move into before for all system specs?
sign_in user sign_in user
end end