mirror of
https://github.com/twbs/bootstrap-sass.git
synced 2022-11-09 12:27:02 -05:00
8 lines
311 B
Ruby
8 lines
311 B
Ruby
require 'test_helper'
|
|
|
|
class CompassTest < Test::Unit::TestCase
|
|
def test_create_project_with_boostrap
|
|
command = 'compass create tmp/new-compass-project -r bootstrap-sass --using bootstrap --trace --force'
|
|
assert silence_stream(STDOUT) { system(command) }, 'Compass project creation failed!'
|
|
end
|
|
end
|