aboutsummaryrefslogblamecommitdiffstats
path: root/railties/test/application/help_test.rb
blob: f92dd60a7cd728fdda8a51b7e320a21f861f3d2e (plain) (tree)
1
                             






















                                                             
# 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 = Dir.chdir(app_path) { `bin/rails help` }
    assert_match "The most common rails commands are", output
  end

  test "short-cut alias works" do
    output = Dir.chdir(app_path) { `bin/rails -h` }
    assert_match "The most common rails commands are", output
  end
end