mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
Add unit tests for CSS imports and relative path conversion
This commit is contained in:
parent
7385d2f097
commit
cb8bb2e1b0
4 changed files with 17 additions and 0 deletions
|
|
@ -1,4 +1,5 @@
|
|||
@charset "UTF-8";
|
||||
@import url(concat.source3.css);
|
||||
.wordpress {
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
|
|
|||
4
tests/_data/formatter/concat.source3.css
Normal file
4
tests/_data/formatter/concat.source3.css
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
.imported {
|
||||
background-image: url("test.jpg");
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
|
@ -8,6 +8,12 @@
|
|||
/* Original file: tests/_data/formatter/concat.source2.css */
|
||||
|
||||
@charset "UTF-8";
|
||||
/* Original file: tests/_data/formatter/concat.source3.css */
|
||||
|
||||
.imported {
|
||||
background-image: url("../_data/_data/formatter/test.jpg");
|
||||
font-family: sans-serif;
|
||||
}
|
||||
.wordpress {
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,6 +12,12 @@
|
|||
/* Original file: tests/_data/formatter/concat.source2.css */
|
||||
|
||||
@charset "UTF-8";
|
||||
/* Original file: tests/_data/formatter/concat.source3.css */
|
||||
|
||||
.imported {
|
||||
background-image: url("../_data/_data/formatter/test.jpg");
|
||||
font-family: sans-serif;
|
||||
}
|
||||
.wordpress {
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue