aboutsummaryrefslogtreecommitdiff
path: root/test/unit/command_line_test.rb
blob: 3493600b9b8d7fd63558ba624f5b5fdafab32def (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require File.expand_path('../test_helper', __FILE__)

class CommandLineTest < MiniTest::Unit::TestCase

  def test_help
    #with_multiple_rubies do
      output = leap_bin('help')
      assert_equal 0, $?, "help should exit 0 -- #{output}"
    #end
  end

end