mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-26 10:04:20 -05:00
13 lines
254 B
Ruby
13 lines
254 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'rails_helper'
|
||
|
require 'mastodon/cli/search'
|
||
|
|
||
|
describe Mastodon::CLI::Search do
|
||
|
describe '.exit_on_failure?' do
|
||
|
it 'returns true' do
|
||
|
expect(described_class.exit_on_failure?).to be true
|
||
|
end
|
||
|
end
|
||
|
end
|