Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGleb Mazovetskiy <glex.spb@gmail.com>2016-09-10 16:02:36 +0300
committerGleb Mazovetskiy <glex.spb@gmail.com>2016-09-10 16:17:00 +0300
commitd527714693edb72688eb8c239228b2db66e56ded (patch)
treec211f661acd37ce735acf8da6f89d3b30352ab0d
parent7d1dd40ce87b7e912a96b8023f920ecc3f1b235f (diff)
Fix compass test on Travisv4.0.0.alpha4
-rw-r--r--test/compass_test.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/compass_test.rb b/test/compass_test.rb
index 6a5123d..3be6101 100644
--- a/test/compass_test.rb
+++ b/test/compass_test.rb
@@ -1,8 +1,13 @@
require 'test_helper'
class CompassTest < Minitest::Test
+ COMPASS_CMD = 'compass create tmp/new-compass-project -r bootstrap --using bootstrap --trace --force'
+
def test_create_project
- command = 'rm -rf tmp/new-compass-project; bundle exec compass create tmp/new-compass-project -r bootstrap --trace --force'
+ command = [
+ 'rm -rf tmp/new-compass-project;',
+ COMPASS_CMD
+ ].join(' ')
success = silence_stdout_if(!ENV['VERBOSE']) { system(command) }
assert success, 'Compass project creation failed!'
end