Sha256: 6a1328bf03c3cae930500405c0f18530d9c010eb3dfed3486cb0ffb410a4ae28

Contents?: true

Size: 1.65 KB

Versions: 15

Compression:

Stored size: 1.65 KB

Contents

require 'bundler' ; Bundler.require :development, :test
require 'less-rails-bootstrap'
require 'minitest/autorun'
require 'dummy_app/init'
require 'fileutils'

module Less
  module Rails
    module Bootstrap
      class Spec < MiniTest::Spec
        
        include FileUtils
        
        class << self
          
          def dummy_app
            Dummy::Application
          end

          def dummy_tmp
            "#{dummy_app.root}/tmp"
          end
          
        end
        
        before do
          prepare_cache_dir
          reset_config_options
          reset_caches
        end
        
        protected
        
        delegate :dummy_app, :dummy_tmp, :to => :'self.class'

        def dummy_config
          dummy_app.config
        end
        
        def dummy_assets
          dummy_app.assets
        end
        
        def dummy_asset(name)
          dummy_assets[name].to_s.strip
        end
        
        def reset_config_options
          dummy_config.less.compress = false
        end
        
        def reset_caches
          version = SecureRandom.hex(32)
          dummy_config.assets.version = version
          dummy_assets.version = version
          cache = dummy_assets.cache
          cache.respond_to?(:clear) ? cache.clear : rm_r("#{dummy_tmp}/cache/assets")
        end
        
        def prepare_cache_dir
          mkdir_p "#{dummy_tmp}/cache/assets"
        end

        def project_root
          File.expand_path File.join(File.dirname(__FILE__), '..')
        end

        def project_app_twitter_bootstrap
          File.join project_root, 'app', 'frameworks'
        end
        
      end
    end    
  end
end

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
scc-less-rails-bootstrap-3.3.5.2 test/spec_helper.rb
less-rails-bootstrap-3.3.5.0 test/spec_helper.rb
less-rails-bootstrap-3.3.4.0 test/spec_helper.rb
less-rails-bootstrap-3.3.2.0 test/spec_helper.rb
less-rails-bootstrap-3.3.1.0 test/spec_helper.rb
less-rails-bootstrap-3.3.0.1 test/spec_helper.rb
less-rails-bootstrap-3.3.0.0 test/spec_helper.rb
less-rails-bootstrap-3.2.0 test/spec_helper.rb
less-rails-bootstrap-3.1.1.1 test/spec_helper.rb
less-rails-bootstrap-3.1.1.0 test/spec_helper.rb
less-rails-bootstrap-3.1.0.0 test/spec_helper.rb
less-rails-bootstrap-3.0.6 test/spec_helper.rb
less-rails-bootstrap-3.0.5 test/spec_helper.rb
less-rails-bootstrap-3.0.4 test/spec_helper.rb
less-rails-bootstrap-3.0.3 test/spec_helper.rb