1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/test/application/help_test.rb

26 lines
477 B
Ruby
Raw Normal View History

# 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
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
output = rails("-h")
2017-02-23 19:17:13 -05:00
assert_match "The most common rails commands are", output
end
end