diff --git a/tests/inputs/import.less b/tests/inputs/import.less index a5005674..7a52cb2f 100644 --- a/tests/inputs/import.less +++ b/tests/inputs/import.less @@ -51,6 +51,9 @@ div { pre { color: @someValue; } +blockquote { + color: @someOtherValue; +} @import "file3"; - +@someOtherValue: hello-from-imports-file; diff --git a/tests/inputs/test-imports/file3.less b/tests/inputs/test-imports/file3.less index 28b643ea..2b1df2cf 100644 --- a/tests/inputs/test-imports/file3.less +++ b/tests/inputs/test-imports/file3.less @@ -4,4 +4,5 @@ h2 { } @someValue: hello-from-file-3; +@someOtherValue: hello-from-file-3; diff --git a/tests/outputs/import.css b/tests/outputs/import.css index b76c25b5..16e5a448 100644 --- a/tests/outputs/import.css +++ b/tests/outputs/import.css @@ -46,6 +46,9 @@ body div.sad { pre { color: hello-from-file-3; } +blockquote { + color: hello-from-imports-file; +} h2 { background: url("../images/logo.png") no-repeat; }