aboutsummaryrefslogtreecommitdiff
path: root/test/unit/command_line_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/command_line_test.rb')
-rw-r--r--test/unit/command_line_test.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/unit/command_line_test.rb b/test/unit/command_line_test.rb
new file mode 100644
index 0000000..ec4c2d6
--- /dev/null
+++ b/test/unit/command_line_test.rb
@@ -0,0 +1,12 @@
+require File.expand_path('test_helper', File.dirname(__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