mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-26 10:04:20 -05:00
15 lines
312 B
Ruby
15 lines
312 B
Ruby
|
# 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
|