Sha256: f96f7c71423694d0f9e460e4aec54d2e85d3771d165c1bcf8479a4018ca3f741

Contents?: true

Size: 598 Bytes

Versions: 3

Compression:

Stored size: 598 Bytes

Contents

#!/usr/bin/env ruby
# coding: utf-8

require 'simplecov'

if ENV['CODECLIMATE_REPO_TOKEN']
  require "codeclimate-test-reporter"
  CodeClimate::TestReporter.start
end

# Compatibility module for StringIO, File
# and Tempfile. Necessary for some tests.
require "io_console_compatible"

require 'highline'
debug_message = "Tests will be run under:\n"
debug_message << "  - #{HighLine.new.terminal.class}\n"
debug_message << "  - HighLine::VERSION #{HighLine::VERSION}\n"

if defined? RUBY_DESCRIPTION
  debug_message << "  - #{RUBY_DESCRIPTION}\n"
end

puts debug_message

require "minitest/autorun"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
highline-2.0.0.pre.develop.6 test/test_helper.rb
highline-2.0.0.pre.develop.4 test/test_helper.rb
highline-2.0.0.pre.develop.2 test/test_helper.rb