35 lines
		
	
	
		
			784 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			784 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| require 'rails_helper'
 | |
| require 'mastodon/cli/statuses'
 | |
| 
 | |
| 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
 |