Sha256: 21e58196b21429c86ed73cd7f37e67ed78afbd626b1396835d03ddc7314db427
Contents?: true
Size: 1.85 KB
Versions: 74
Compression:
Stored size: 1.85 KB
Contents
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with this # work for additional information regarding copyright ownership. The ASF # licenses this file to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations under # the License. require File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec_helpers')) describe 'Javadoc' do def sources @sources ||= (1..3).map { |i| "Test#{i}" }. each { |name| write "src/main/java/foo/#{name}.java", "package foo; public class #{name}{}" }. map { |name| "src/main/java/foo/#{name}.java" } end it 'should pick -windowtitle from project name by default' do define 'foo' do compile.using(:javac) define 'bar' do compile.using(:javac) end end project('foo').doc.options[:windowtitle].should eql('foo') project('foo:bar').doc.options[:windowtitle].should eql('foo:bar') end it 'should pick -windowtitle from project description by default, if available' do desc 'My App' define 'foo' do compile.using(:javac) end project('foo').doc.options[:windowtitle].should eql('My App') end it 'should not override explicit :windowtitle' do define 'foo' do compile.using(:javac) doc.using :windowtitle => 'explicit' end project('foo').doc.options[:windowtitle].should eql('explicit') end end
Version data entries
74 entries across 74 versions & 2 rubygems