Sha256: 8de96b704a4121cef362ed4413ae3252fe8c0ec4896ee07d5ba748907a0e1580

Contents?: true

Size: 1.86 KB

Versions: 50

Compression:

Stored size: 1.86 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

50 entries across 50 versions & 3 rubygems

Version Path
buildr-1.4.16 spec/java/doc_spec.rb
buildr-1.4.16-x86-mswin32 spec/java/doc_spec.rb
buildr-1.4.16-java spec/java/doc_spec.rb
buildr-1.4.15 spec/java/doc_spec.rb
buildr-1.4.15-x86-mswin32 spec/java/doc_spec.rb
buildr-1.4.15-java spec/java/doc_spec.rb
buildr-1.4.14-java spec/java/doc_spec.rb
buildr-1.4.14-x86-mswin32 spec/java/doc_spec.rb
buildr-1.4.14 spec/java/doc_spec.rb
buildr-1.4.13 spec/java/doc_spec.rb
buildr-1.4.13-x86-mswin32 spec/java/doc_spec.rb
buildr-1.4.13-java spec/java/doc_spec.rb
buildr-1.4.12 spec/java/doc_spec.rb
buildr-1.4.12-x86-mswin32 spec/java/doc_spec.rb
buildr-1.4.12-java spec/java/doc_spec.rb
buildr-1.4.11 spec/java/doc_spec.rb
buildr-1.4.11-x86-mswin32 spec/java/doc_spec.rb
buildr-1.4.11-java spec/java/doc_spec.rb
buildr-1.4.10 spec/java/doc_spec.rb
buildr-1.4.10-x86-mswin32 spec/java/doc_spec.rb