class Librarian::RSpec::Support::CliMacro::FakeShell

Public Instance Methods

stderr() click to toggle source
# File lib/librarian/rspec/support/cli_macro.rb, line 18
def stderr
  @stderr ||= StringIO.new
end
stdin() click to toggle source
# File lib/librarian/rspec/support/cli_macro.rb, line 21
def stdin
  raise "unsupported"
end
stdout() click to toggle source
# File lib/librarian/rspec/support/cli_macro.rb, line 15
def stdout
  @stdout ||= StringIO.new
end