2017-08-14 13:08:09 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-02-23 19:17:13 -05:00
|
|
|
require "isolation/abstract_unit"
|
|
|
|
|
|
|
|
class HelpTest < ActiveSupport::TestCase
|
|
|
|
include ActiveSupport::Testing::Isolation
|
|
|
|
|
|
|
|
def setup
|
|
|
|
build_app
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
teardown_app
|
|
|
|
end
|
|
|
|
|
|
|
|
test "command works" do
|
2017-09-03 12:55:26 -04:00
|
|
|
output = rails("help")
|
2017-02-23 19:17:13 -05:00
|
|
|
assert_match "The most common rails commands are", output
|
|
|
|
end
|
|
|
|
|
|
|
|
test "short-cut alias works" do
|
2017-09-03 12:55:26 -04:00
|
|
|
output = rails("-h")
|
2017-02-23 19:17:13 -05:00
|
|
|
assert_match "The most common rails commands are", output
|
|
|
|
end
|
|
|
|
end
|