From eb58c8e0df680b6e38858775eb5d80913588e932 Mon Sep 17 00:00:00 2001 From: Matt Jankowski Date: Sun, 5 Mar 2023 20:52:33 -0500 Subject: [PATCH] Add spec for the CLI `version` task This causes all of the cli classes to be loaded, which is a big win in code coverage LOC in exchange for this trivial spec addition. --- spec/lib/mastodon/cli_spec.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 spec/lib/mastodon/cli_spec.rb diff --git a/spec/lib/mastodon/cli_spec.rb b/spec/lib/mastodon/cli_spec.rb new file mode 100644 index 0000000000000..419f8b864e2e9 --- /dev/null +++ b/spec/lib/mastodon/cli_spec.rb @@ -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