2011-01-18 19:08:49 -05:00
|
|
|
######################################################################
|
|
|
|
# This file is imported from the rubygems project.
|
|
|
|
# DO NOT make modifications in this repo. They _will_ be reverted!
|
|
|
|
# File a patch instead and assign it to Ryan Davis or Eric Hodel.
|
|
|
|
######################################################################
|
|
|
|
|
2011-01-28 18:46:47 -05:00
|
|
|
require 'rubygems/test_case'
|
2008-06-17 18:04:18 -04:00
|
|
|
require 'rubygems/commands/stale_command'
|
|
|
|
|
2011-01-28 18:46:47 -05:00
|
|
|
class TestGemCommandsStaleCommand < Gem::TestCase
|
2008-06-17 18:04:18 -04:00
|
|
|
|
|
|
|
def setup
|
|
|
|
super
|
|
|
|
@cmd = Gem::Commands::StaleCommand.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_execute_sorts
|
|
|
|
files = %w[lib/foo_bar.rb Rakefile]
|
2011-03-07 03:44:45 -05:00
|
|
|
foo_bar = quick_spec 'foo_bar' do |gem|
|
2008-06-17 18:04:18 -04:00
|
|
|
gem.files = files
|
|
|
|
end
|
2011-03-07 03:44:45 -05:00
|
|
|
|
|
|
|
bar_baz = quick_spec 'bar_baz' do |gem|
|
2008-06-17 18:04:18 -04:00
|
|
|
gem.files = files
|
|
|
|
end
|
|
|
|
|
|
|
|
files.each do |file|
|
|
|
|
filename = bar_baz.full_gem_path + "/#{file}"
|
|
|
|
FileUtils.mkdir_p(File.dirname(filename))
|
|
|
|
FileUtils.touch(filename, :mtime => Time.now)
|
|
|
|
|
|
|
|
filename = foo_bar.full_gem_path + "/#{file}"
|
|
|
|
FileUtils.mkdir_p(File.dirname(filename))
|
|
|
|
FileUtils.touch(filename, :mtime => Time.now - 86400)
|
|
|
|
end
|
|
|
|
|
|
|
|
use_ui @ui do
|
|
|
|
@cmd.execute
|
|
|
|
end
|
2011-03-07 03:44:45 -05:00
|
|
|
|
2008-06-17 18:04:18 -04:00
|
|
|
lines = @ui.output.split("\n")
|
|
|
|
assert_equal("#{foo_bar.name}-#{foo_bar.version}", lines[0].split.first)
|
|
|
|
assert_equal("#{bar_baz.name}-#{bar_baz.version}", lines[1].split.first)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|