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|
|
2011-05-31 23:45:05 -04:00
|
|
|
filename = File.join(bar_baz.full_gem_path, file)
|
|
|
|
FileUtils.mkdir_p File.dirname filename
|
2008-06-17 18:04:18 -04:00
|
|
|
FileUtils.touch(filename, :mtime => Time.now)
|
|
|
|
|
2011-05-31 23:45:05 -04:00
|
|
|
filename = File.join(foo_bar.full_gem_path, file)
|
|
|
|
FileUtils.mkdir_p File.dirname filename
|
2008-06-17 18:04:18 -04:00
|
|
|
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
|