Browse Source

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

closed-social-glitch-2
Matt Jankowski 1 year ago
committed by GitHub
parent
commit
a471e1c48f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions
  1. +14
    -0
      spec/lib/mastodon/cli_spec.rb

+ 14
- 0
spec/lib/mastodon/cli_spec.rb 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

Loading…
Cancel
Save