mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
d4882aa64a
* Export hide_notifications along with user mutes * Import hide_notifications along with muted users list * Add headers for CSV exports
18 lines
466 B
Ruby
18 lines
466 B
Ruby
require 'rails_helper'
|
|
|
|
describe Settings::Exports::MutedAccountsController do
|
|
render_views
|
|
|
|
describe 'GET #index' do
|
|
it 'returns a csv of the muting accounts' do
|
|
user = Fabricate(:user)
|
|
user.account.mute!(Fabricate(:account, username: 'username', domain: 'domain'))
|
|
|
|
sign_in user, scope: :user
|
|
get :index, format: :csv
|
|
|
|
expect(response.body).to eq "Account address,Hide notifications\nusername@domain,true\n"
|
|
end
|
|
end
|
|
end
|