1
0
mirror of https://github.com/deuill/fawkss.git synced 2024-06-01 21:15:29 +00:00
fawkss/tests/imports/02-legacy.scss

19 lines
285 B
SCSS
Raw Normal View History

//
// Tests that "legacy" or CSS imports are not handled.
//
--- TEST ---
@import "foo.css";
@import "foo" screen;
@import "http://foo.com/bar";
@import url(foo);
--- EXPECTED ---
@import "foo.css";
@import "foo" screen;
@import "http://foo.com/bar";
@import url(foo);
--- END ---