Sha256: 7a3ef5fdfc0129cfdf7fa078354f38d716374922509c64cfe046de6f74ab1795
Contents?: true
Size: 626 Bytes
Versions: 13
Compression:
Stored size: 626 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.ruby} #{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
13 entries across 13 versions & 1 rubygems