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

compass_test.rb « test - github.com/twbs/bootstrap-sass.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7c4fb71838d1e1a6053d70f014acdc404315ba0 (plain)
1
2
3
4
5
6
7
8
9
require 'test_helper'

class CompassTest < Minitest::Test
  def test_create_project
    command = 'rm -rf tmp/new-compass-project; bundle exec compass create tmp/new-compass-project -r bootstrap-sass --using bootstrap --trace --force'
    success = silence_stdout_if(!ENV['VERBOSE']) { Bundler.with_original_env { system(command) } }
    assert success, 'Compass project creation failed!'
  end
end