about summary refs log tree commit diff
path: root/spec
diff options
context:
space:
mode:
authorMatt Jankowski <matt@jankowski.online>2023-03-14 22:56:09 -0400
committerGitHub <noreply@github.com>2023-03-15 03:56:09 +0100
commita471e1c48f4c9ec9e96832f51783b11407b67161 (patch)
tree1c91e37481a7d81acaff67d06481a048d0b9d763 /spec
parent39c723664998e73778a528ed0d467faed2c160dc (diff)
Add spec for the CLI `version` task (#23978)
Diffstat (limited to 'spec')
-rw-r--r--spec/lib/mastodon/cli_spec.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/spec/lib/mastodon/cli_spec.rb b/spec/lib/mastodon/cli_spec.rb
new file mode 100644
index 000000000..419f8b864
--- /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