forked from macdonst/callback-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphonegap_docs_spec.rb
32 lines (27 loc) · 1000 Bytes
/
phonegap_docs_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
$:.unshift File.join(File.dirname(__FILE__))
require 'spec_helpers'
require 'phonegap_docs'
describe PhoneGapDocs do
before :each do
@tmp_docs_directory = Helper::create_tmp_directory_assets
@tmp_public_directory = Helper::tmp_public_directory
@phonegap_docs = PhoneGapDocs.new(@tmp_docs_directory, Helper::tmp_public_directory)
end
it 'should create an output directory' do
@phonegap_docs.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
phonegap_docs = PhoneGapDocs.new
File.exists?(phonegap_docs.input_directory).should be_true
end
it 'should accept custom directories' do
@phonegap_docs.run
@phonegap_docs.input_directory.should == @tmp_docs_directory
@phonegap_docs.output_directory.should == @tmp_public_directory
end
after :all do
Helper::remove_tmp_directory
end
end