mastodon/spec/lib/mastodon/cli/main_spec.rb

15 lines
332 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
require 'mastodon/cli/main'
describe Mastodon::CLI::Main 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