UNPKG

369 BPlain TextView Raw
1require 'test_helper'
2
3class CompassTest < Minitest::Test
4 def test_create_project
5 command = 'rm -rf tmp/new-compass-project; bundle exec compass create tmp/new-compass-project -r bootstrap-sass --using bootstrap --trace --force'
6 success = silence_stdout_if(!ENV['VERBOSE']) { system(command) }
7 assert success, 'Compass project creation failed!'
8 end
9end