mirror of
https://github.com/twbs/bootstrap-sass.git
synced 2022-11-09 12:27:02 -05:00
9 lines
369 B
Ruby
9 lines
369 B
Ruby
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']) { system(command) }
|
|
assert success, 'Compass project creation failed!'
|
|
end
|
|
end
|