summaryrefslogtreecommitdiff
path: root/test/test_hoe_publish.rb
blob: 2229ccf923c88fe3439b5adefad86755cb61ec1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
require "rubygems"
require "minitest/autorun"
require "hoe"

class TestHoePublish < Minitest::Test
  def setup
    @hoe = Hoe.spec "blah" do
      self.version = "1.0"

      developer "author", ""
      license "MIT"
    end
  end

  make_my_diffs_pretty!

  def linux? platform = RUBY_PLATFORM # TODO: push up to minitest?
    /linux/ =~ platform
  end

  def test_make_rdoc_cmd
    expected = %W[
                #{Gem.ruby}
                #{Gem.bin_wrapper "rdoc"}
                --title blah-1.0\ Documentation
                -o doc
                --main README.rdoc
                lib
                History.rdoc Manifest.txt README.rdoc
               ]

    skip if linux?
    assert_equal expected, @hoe.make_rdoc_cmd
  end
end