diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-04-04 14:53:52 +0200 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-04-04 14:53:52 +0200 |
commit | 1682ac571763f473da54074b0608cd9ccb4b9ae5 (patch) | |
tree | 2cb3f134660b2d7d460772966f7eb595395611f7 /spec/models/export_spec.rb | |
parent | 3f5acc1ab3bc9c5a6c5805901a393ccd3457b909 (diff) | |
parent | 26bd9fa508ac155f996c2c0d9753a27d46158749 (diff) |
Merge branch 'master' into glitch-soc/merge-upstream
Conflicts: - app/controllers/following_accounts_controller.rb Conflicts were due to glitch-soc's theming system. - app/javascript/packs/public.js Some code has been change upstream, but it has been moved to app/javascript/core/settings.js in glitch-soc. Applied the changes there.
Diffstat (limited to 'spec/models/export_spec.rb')
-rw-r--r-- | spec/models/export_spec.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/spec/models/export_spec.rb b/spec/models/export_spec.rb index 277dcc526..0553f4098 100644 --- a/spec/models/export_spec.rb +++ b/spec/models/export_spec.rb @@ -21,10 +21,11 @@ describe Export do target_accounts.each(&account.method(:mute!)) export = Export.new(account).to_muted_accounts_csv - results = export.strip.split + results = export.strip.split("\n") - expect(results.size).to eq 2 - expect(results.first).to eq 'one@local.host' + expect(results.size).to eq 3 + expect(results.first).to eq 'Account address,Hide notifications' + expect(results.second).to eq 'one@local.host,true' end it 'returns a csv of the following accounts' do |