mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
25 lines
542 B
Ruby
25 lines
542 B
Ruby
|
#--
|
||
|
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
|
||
|
# All rights reserved.
|
||
|
# See LICENSE.txt for permissions.
|
||
|
#++
|
||
|
|
||
|
require File.join(File.expand_path(File.dirname(__FILE__)), 'gemutilities')
|
||
|
require 'rubygems/commands/check_command'
|
||
|
|
||
|
class TestGemCommandsCheckCommand < RubyGemTestCase
|
||
|
|
||
|
def setup
|
||
|
super
|
||
|
|
||
|
@cmd = Gem::Commands::CheckCommand.new
|
||
|
end
|
||
|
|
||
|
def test_initialize
|
||
|
assert_equal "check", @cmd.command
|
||
|
assert_equal "gem check", @cmd.program_name
|
||
|
assert_match(/Check/, @cmd.summary)
|
||
|
end
|
||
|
|
||
|
end
|