mirror of https://github.com/glitch-soc/mastodon
35 lines
790 B
Ruby
35 lines
790 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
require 'mastodon/cli/statuses'
|
|
|
|
RSpec.describe Mastodon::CLI::Statuses do
|
|
subject { cli.invoke(action, arguments, options) }
|
|
|
|
let(:cli) { described_class.new }
|
|
let(:arguments) { [] }
|
|
let(:options) { {} }
|
|
|
|
it_behaves_like 'CLI Command'
|
|
|
|
describe '#remove', use_transactional_tests: false do
|
|
let(:action) { :remove }
|
|
|
|
context 'with small batch size' do
|
|
let(:options) { { batch_size: 0 } }
|
|
|
|
it 'exits with error message' do
|
|
expect { subject }
|
|
.to raise_error(Thor::Error, /Cannot run/)
|
|
end
|
|
end
|
|
|
|
context 'with default batch size' do
|
|
it 'removes unreferenced statuses' do
|
|
expect { subject }
|
|
.to output_results('Done after')
|
|
end
|
|
end
|
|
end
|
|
end
|