2023-03-15 13:56:09 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
2023-05-24 00:08:26 +10:00
|
|
|
require 'mastodon/cli/main'
|
2023-03-15 13:56:09 +11:00
|
|
|
|
2023-05-24 00:08:26 +10:00
|
|
|
describe Mastodon::CLI::Main do
|
2023-05-24 19:55:40 +10:00
|
|
|
describe '.exit_on_failure?' do
|
|
|
|
it 'returns true' do
|
|
|
|
expect(described_class.exit_on_failure?).to be true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2023-03-15 13:56:09 +11:00
|
|
|
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
|