Sha256: c62e8618ed4f1e2f2e145f1849b787b3b69aa98fc3cc97c37cee29acb4849ce5
Contents?: true
Size: 598 Bytes
Versions: 8
Compression:
Stored size: 598 Bytes
Contents
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 test_make_rdoc_cmd expected = %W[ #{Gem.bin_wrapper "rdoc"} --title blah-1.0\ Documentation -o doc --main README.rdoc lib History.rdoc Manifest.txt README.rdoc ] assert_equal expected, @hoe.make_rdoc_cmd end end
Version data entries
8 entries across 8 versions & 1 rubygems