blob: 2a40847ae6bc9cb4b06b648da557561d510aafd2 [file] [log] [blame]
# 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.
$:.unshift File.join(File.dirname(__FILE__))
require 'spec_helpers'
require 'docs_generator'
describe DocsGenerator do
before :each do
@tmp_docs_directory = Helper::create_tmp_directory_assets
@tmp_public_directory = Helper::tmp_public_directory
@generator = DocsGenerator.new(@tmp_docs_directory, Helper::tmp_public_directory)
end
it 'should create an output directory' do
@generator.run
File.exists?(@tmp_public_directory).should be_true
Dir.glob(File.join(@tmp_public_directory, '**', '*')).should have_at_least(1).items
end
it 'should have a valid default directories' do
generator = DocsGenerator.new
File.exists?(generator.input_directory).should be_true
end
it 'should accept custom directories' do
@generator.run
@generator.input_directory.should == @tmp_docs_directory
@generator.output_directory.should == @tmp_public_directory
end
after :all do
Helper::remove_tmp_directory
end
end