about summary refs log tree commit diff
path: root/spec/lib/mastodon/cli_spec.rb
blob: 419f8b864e2e908f2d0e6d6377530ad47d9f73b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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