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

github.com/twbs/bootstrap-sass.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGleb Mazovetskiy <glex.spb@gmail.com>2014-03-15 01:05:45 +0400
committerGleb Mazovetskiy <glex.spb@gmail.com>2014-03-15 01:05:45 +0400
commit0b42388dd0b66c7b60c1d79ed80e453431c5a226 (patch)
tree7b614735ac89eaff21b6b3bda9d1f7f13018ca78 /test
parentbac7f7ff9340caf6aa7ce2a01c4ef28c6f71c485 (diff)
Simplify mincer test
Diffstat (limited to 'test')
-rw-r--r--test/dummy_node_mincer/application.css5
-rw-r--r--test/dummy_node_mincer/application.css.ejs.scss (renamed from test/dummy_node_mincer/require_all.css.ejs.scss)4
-rw-r--r--test/dummy_node_mincer/manifest.js5
3 files changed, 4 insertions, 10 deletions
diff --git a/test/dummy_node_mincer/application.css b/test/dummy_node_mincer/application.css
deleted file mode 100644
index f531b9c3..00000000
--- a/test/dummy_node_mincer/application.css
+++ /dev/null
@@ -1,5 +0,0 @@
-
-/*
- *= require require_all
- */
- \ No newline at end of file
diff --git a/test/dummy_node_mincer/require_all.css.ejs.scss b/test/dummy_node_mincer/application.css.ejs.scss
index b23c4b2b..4b1a0e03 100644
--- a/test/dummy_node_mincer/require_all.css.ejs.scss
+++ b/test/dummy_node_mincer/application.css.ejs.scss
@@ -1,6 +1,4 @@
-
-
-@import "bootstrap/bootstrap-mincer";
+@import "bootstrap-mincer";
@import "bootstrap";
#image-retina {
diff --git a/test/dummy_node_mincer/manifest.js b/test/dummy_node_mincer/manifest.js
index 5c968865..a4d22ddf 100644
--- a/test/dummy_node_mincer/manifest.js
+++ b/test/dummy_node_mincer/manifest.js
@@ -38,10 +38,11 @@ var environment = new Mincer.Environment(process.cwd());
//
// Include bootstrap scss load path
-environment.appendPath('../../vendor/assets/stylesheets');
+var bootstrapPath = '../../';
+environment.appendPath(bootstrapPath + 'vendor/assets/stylesheets');
// Include fonts load path
-environment.appendPath('../../vendor/assets/fonts');
+environment.appendPath(bootstrapPath + 'vendor/assets/fonts');
// Include dir with assets, root just for test
environment.appendPath('./');