mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
802ce8a239
While this avoids shell argument parsing, we still pass through everything in our stack.
26 lines
499 B
Ruby
26 lines
499 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "isolation/abstract_unit"
|
|
require "rails/gem_version"
|
|
|
|
class VersionTest < ActiveSupport::TestCase
|
|
include ActiveSupport::Testing::Isolation
|
|
|
|
def setup
|
|
build_app
|
|
end
|
|
|
|
def teardown
|
|
teardown_app
|
|
end
|
|
|
|
test "command works" do
|
|
output = rails("version")
|
|
assert_equal "Rails #{Rails.gem_version}\n", output
|
|
end
|
|
|
|
test "short-cut alias works" do
|
|
output = rails("-v")
|
|
assert_equal "Rails #{Rails.gem_version}\n", output
|
|
end
|
|
end
|