Add spec for the CLI version task (#23978)
				
					
				
			This commit is contained in:
		
							
								
								
									
										14
									
								
								spec/lib/mastodon/cli_spec.rb
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								spec/lib/mastodon/cli_spec.rb
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,14 @@
 | 
			
		||||
# frozen_string_literal: true
 | 
			
		||||
 | 
			
		||||
require 'rails_helper'
 | 
			
		||||
require 'cli'
 | 
			
		||||
 | 
			
		||||
describe Mastodon::CLI do
 | 
			
		||||
  describe 'version' do
 | 
			
		||||
    it 'returns the Mastodon version' do
 | 
			
		||||
      expect { described_class.new.invoke(:version) }.to output(
 | 
			
		||||
        a_string_including(Mastodon::Version.to_s)
 | 
			
		||||
      ).to_stdout
 | 
			
		||||
    end
 | 
			
		||||
  end
 | 
			
		||||
end
 | 
			
		||||
		Reference in New Issue
	
	Block a user