1
0
Fork 0
forked from gitea/glitch-bird
glitch-bird/spec/lib/mastodon/cli/media_spec.rb
2023-05-24 11:55:40 +02:00

13 lines
252 B
Ruby

# frozen_string_literal: true
require 'rails_helper'
require 'mastodon/cli/media'
describe Mastodon::CLI::Media do
describe '.exit_on_failure?' do
it 'returns true' do
expect(described_class.exit_on_failure?).to be true
end
end
end