Sha256: 8940feeca3175b093374d95fd7e447cf8f120e7f9f06dd3a8c2f557ede5bd5ed
Contents?: true
Size: 1.69 KB
Versions: 7
Compression:
Stored size: 1.69 KB
Contents
# -*- coding: utf-8 -*- require 'spec_helper' require 'rack/test' require 'fileutils' require 'tdiary/rack/assets/precompile' if defined?(Encoding) describe TDiary::Rack::Assets::Precompile do include Rack::Test::Methods let(:app) do TDiary::Rack::Assets::Precompile.new(lambda{|env| [200, {}, ['Awesome']]}, @environment) end let(:assets_path) {"#{TDiary::PATH}/tmp/assets"} before do FileUtils.mkdir_p assets_path @environment = Sprockets::Environment.new @environment.append_path assets_path end after do FileUtils.rm_rf assets_path end context "JavaScript が無い場合" do before do FileUtils.touch "#{assets_path}/foo.coffee" get '/' end it "JavaScript にコンパイルされる" do FileTest.exist?("#{assets_path}/foo.js").should be_true end end context "JavaScript がある場合" do context "CoffeeScript の方が新しい場合" do before do FileUtils.touch "#{assets_path}/foo.js" sleep 1 FileUtils.touch "#{assets_path}/foo.coffee" @jstime = File.mtime("#{assets_path}/foo.js").to_i get '/' end it "JavaScript が更新される" do @jstime.should < File.mtime("#{assets_path}/foo.js").to_i end end context "JavaScript の方が新しい場合" do before do FileUtils.touch "#{assets_path}/foo.coffee" sleep 1 FileUtils.touch "#{assets_path}/foo.js" @jstime = File.mtime("#{assets_path}/foo.js").to_i get '/' end it "JavaScript は更新されない" do @jstime.should == File.mtime("#{assets_path}/foo.js").to_i end end end end end # Local Variables: # mode: ruby # indent-tabs-mode: t # tab-width: 3 # ruby-indent-level: 3 # End:
Version data entries
7 entries across 7 versions & 1 rubygems