mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-14 00:08:46 +00:00
23 lines
668 B
Ruby
23 lines
668 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Wrapstodon' do
|
|
describe 'Viewing a wrapstodon' do
|
|
let(:generated_annual_report) { AnnualReport.new(user.account, Time.current.year).generate }
|
|
let(:user) { Fabricate :user }
|
|
|
|
context 'when signed in' do
|
|
before { sign_in user }
|
|
|
|
it 'visits the wrap page and renders the web app' do
|
|
visit public_wrapstodon_path(account_username: user.account.username, year: generated_annual_report.year, share_key: generated_annual_report.share_key)
|
|
|
|
expect(page)
|
|
.to have_css('#wrapstodon')
|
|
.and have_private_cache_control
|
|
end
|
|
end
|
|
end
|
|
end
|