Skip to content

Commit

Permalink
added failing test for less#49
Browse files Browse the repository at this point in the history
  • Loading branch information
neonstalwart committed Oct 24, 2011
1 parent d84912f commit ff6b7ff
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/css/mixins-import.css
@@ -0,0 +1,6 @@
.a {
mixed: 20;
}
.b {
mixed: 20;
}
4 changes: 4 additions & 0 deletions test/less/import/mixins-import-a.less
@@ -0,0 +1,4 @@
@import "mixins-import-vars";
.a {
.mixin;
}
4 changes: 4 additions & 0 deletions test/less/import/mixins-import-b.less
@@ -0,0 +1,4 @@
@import "mixins-import-vars";
.b {
.mixin;
}
3 changes: 3 additions & 0 deletions test/less/import/mixins-import-vars.less
@@ -0,0 +1,3 @@
.mixin() {
mixed: 20;
}
2 changes: 2 additions & 0 deletions test/less/mixins-import.less
@@ -0,0 +1,2 @@
@import "import/mixins-import-a";
@import "import/mixins-import-b";

0 comments on commit ff6b7ff

Please sign in to comment.