Sha256: 2077cae596242ca83ef793988ec2b30331b6bd4698895591fb7b63c49991ca28
Contents?: true
Size: 1.47 KB
Versions: 1
Compression:
Stored size: 1.47 KB
Contents
require "#{File.dirname(__FILE__)}/../spec_helper" describe Bonsai::Generate do describe "generator" do before :all do @path = File.expand_path("spec/tmp-generator") FileUtils.rm_rf @path Bonsai::Generate.new(@path) end it "should create base directories" do %w(content content/index templates public public/docs public/docs/css public/docs/js).each do |dir| File.directory?("#{@path}/#{dir}").should be_true end end it "should copy the htaccess file to public/.htaccess" do File.exists?("#{@path}/public/.htaccess").should be_true end it "should copy the base.less file" do File.exists?("#{@path}/public/docs/css/base.less").should be_true end it "should copy an index page" do File.exists?("#{@path}/content/index/default.yml").should be_true end it "should copy a default template" do File.exists?("#{@path}/templates/default.mustache").should be_true end it "should create a robots.txt" do File.exists?("#{@path}/public/robots.txt").should be_true end it "should create a site.yml" do File.exists?("#{@path}/site.yml").should be_true end it "should generate 6 files" do Dir.glob("#{@path}/**/*", File::FNM_DOTMATCH).select{|f| File.file?(f) }.size.should == 6 end it "should generate 7 directories" do Dir.glob("#{@path}/**/*").select{|f| File.directory?(f) }.size.should == 7 end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bonsai-1.1.0 | spec/bonsai/generate_spec.rb |