Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sass_test.rb « test - github.com/twbs/bootstrap-sass.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cb435334efe74bf92a780ae9437e8b4bad0d82d (plain)
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
# frozen_string_literal: true

require 'test_helper'
require 'shellwords'
require 'fileutils'

class SassTest < Minitest::Test
  DUMMY_PATH = 'test/dummy_sass_only'

  def test_font_helper
    assert_match %r{url\(['"]?.*eot['"]?\)}, @css
  end

  def setup
    FileUtils.rm_rf(File.join(DUMMY_PATH, '.sass-cache'), secure: true)
    css_path = File.join GEM_PATH, 'tmp/bootstrap-sass-only.css'
    success  = Dir.chdir DUMMY_PATH do
      silence_stdout_if !ENV['VERBOSE'] do
        Bundler.with_original_env do
          system('bundle') && system('bundle', 'exec', 'ruby', 'compile.rb',
                                     Bootstrap.stylesheets_path, css_path)
        end
      end
    end
    assert success, 'Sass-only compilation failed'
    @css = File.read(css_path)
  end
end