1
0
Fork 0
mirror of https://github.com/twbs/bootstrap-sass.git synced 2022-11-09 12:27:02 -05:00
twbs--bootstrap-sass/test/compass_test.rb
Gleb Mazovetskiy 430a80a2be Fix compass manifest
Compass generator will copy javascripts and fonts on project creation
Refs #645
2014-06-24 04:21:35 +02:00

13 lines
453 B
Ruby

require 'test_helper'
class CompassTest < Test::Unit::TestCase
def test_create_project
command = 'rm -rf tmp/new-compass-project; compass create tmp/new-compass-project -r bootstrap-sass --using bootstrap --trace --force'
success = if ENV['VERBOSE']
system command
else
silence_stream(STDOUT) { system(command) }
end
assert success, 'Compass project creation failed!'
end
end