Sha256: c6cf8ee58973ab0c0c9ed5d1be418f22d9b30c3b378efda7c478f66c1eedda69

Contents?: true

Size: 1007 Bytes

Versions: 6

Compression:

Stored size: 1007 Bytes

Contents

require 'rubygems/test_case'
require 'rubygems/commands/stale_command'

class TestGemCommandsStaleCommand < Gem::TestCase

  def setup
    super
    @cmd = Gem::Commands::StaleCommand.new
  end

  def test_execute_sorts
    files = %w[lib/foo_bar.rb Rakefile]
    foo_bar = quick_spec 'foo_bar' do |gem|
      gem.files = files
    end

    bar_baz = quick_spec 'bar_baz' do |gem|
      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

    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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rubygems-update-1.7.2 test/rubygems/test_gem_commands_stale_command.rb
rubygems-update-1.7.1 test/rubygems/test_gem_commands_stale_command.rb
rubygems-update-1.7.0 test/rubygems/test_gem_commands_stale_command.rb
rubygems-update-1.6.2 test/rubygems/test_gem_commands_stale_command.rb
rubygems-update-1.6.1 test/rubygems/test_gem_commands_stale_command.rb
rubygems-update-1.6.0 test/rubygems/test_gem_commands_stale_command.rb