Sha256: 40224f93f4d31a672846e90f32d2db9397dd1766f8a18152a9dd438ac75576ed
Contents?: true
Size: 1.26 KB
Versions: 2
Compression:
Stored size: 1.26 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 generate 4 files" do Dir.glob("#{@path}/**/*", File::FNM_DOTMATCH).select{|f| File.file?(f) }.size.should == 4 end it "should generate 7 directories" do Dir.glob("#{@path}/**/*").select{|f| File.directory?(f) }.size.should == 7 end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bonsai-1.0.1 | spec/bonsai/generate_spec.rb |
bonsai-1.0.0 | spec/bonsai/generate_spec.rb |