Add spec for the CLI `version` task (#23978)

lolsob-rspec
Matt Jankowski 2023-03-14 22:56:09 -04:00 committed by GitHub
parent cfc04637b5
commit a7bc6ae1de
1 changed files with 14 additions and 0 deletions

View 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