Sha256: 3a7a079505315d4e4510bb4a79672b41dc13d1bb8be789b45a6428d78b5f9669
Contents?: true
Size: 418 Bytes
Versions: 4
Compression:
Stored size: 418 Bytes
Contents
require 'test_helper' class CompassTest < Minitest::Test COMPASS_CMD = 'compass create tmp/new-compass-project -r bootstrap --using bootstrap --trace --force' def test_create_project command = [ 'rm -rf tmp/new-compass-project;', COMPASS_CMD ].join(' ') success = silence_stdout_if(!ENV['VERBOSE']) { system(command) } assert success, 'Compass project creation failed!' end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
bootstrap-4.0.0.beta | test/compass_test.rb |
bootstrap-4.0.0.alpha6 | test/compass_test.rb |
bootstrap-4.0.0.alpha5 | test/compass_test.rb |
bootstrap-4.0.0.alpha4 | test/compass_test.rb |