You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
478 B
23 lines
478 B
# frozen_string_literal: true |
|
|
|
require 'rails_helper' |
|
require 'mastodon/cli/main' |
|
|
|
describe Mastodon::CLI::Main do |
|
subject { cli.invoke(action, arguments, options) } |
|
|
|
let(:cli) { described_class.new } |
|
let(:arguments) { [] } |
|
let(:options) { {} } |
|
|
|
it_behaves_like 'CLI Command' |
|
|
|
describe '#version' do |
|
let(:action) { :version } |
|
|
|
it 'returns the Mastodon version' do |
|
expect { subject } |
|
.to output_results(Mastodon::Version.to_s) |
|
end |
|
end |
|
end
|
|
|