Version 1
[yaffs-website] / vendor / twbs / bootstrap-sass / test / compass_test.rb
diff --git a/vendor/twbs/bootstrap-sass/test/compass_test.rb b/vendor/twbs/bootstrap-sass/test/compass_test.rb
new file mode 100644 (file)
index 0000000..1811ca2
--- /dev/null
@@ -0,0 +1,9 @@
+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