rails/railties/test/application/help_test.rb
Matthew Draper 802ce8a239 Run in-app rails commands via fork+load where possible
While this avoids shell argument parsing, we still pass through
everything in our stack.
2017-09-04 20:19:39 +09:30

26 lines
477 B
Ruby

# frozen_string_literal: true
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
output = rails("help")
assert_match "The most common rails commands are", output
end
test "short-cut alias works" do
output = rails("-h")
assert_match "The most common rails commands are", output
end
end