mastodon/spec/support/command_line_helpers.rb

16 lines
228 B
Ruby

# frozen_string_literal: true
module CommandLineHelpers
def output_results(*)
output(
include(*)
).to_stdout
end
def not_output_results(*args)
output(
not_include(*args)
).to_stdout
end
end