Sha256: aeeb1cfaaa475337982c96a67193e76f6979fca85a216d2e5bc6837cea76c36b
Contents?: true
Size: 964 Bytes
Versions: 1
Compression:
Stored size: 964 Bytes
Contents
require "test/unit" require "fileutils" require "pathname" require "tmpdir" require "open3" require_relative "integration_test_assertions" # Clean test should be setting this $FOR_TESTING_ONLY_SKIP_STDERR = false class Methadone::BaseIntegrationTest < Test::Unit::TestCase include FileUtils include Methadone::IntegrationTestAssertions # Run your app, capturing stdout, stderr, and process status. # app_name:: Your bin name, without `bin/` # args:: CLI args as a string # allow_failure:: if true, this will return even if the app invocation fails. If false (the default), blows up if things go # wrong. def run_app(app_name, args, allow_failure: false) command = "bin/#{app_name} #{args}" stdout,stderr,results = Open3.capture3(command) if @allow_failure && !results.success? raise "'#{command}' failed!: #{results.inspect}\n\nSTDOUT {\n#{stdout}\n} STDERR {\n#{stderr}\n} END" end [stdout,stderr,results] end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
methadone-2.0.0 | lib/methadone/test/base_integration_test.rb |