1
0
mirror of https://github.com/deuill/fawkss.git synced 2024-09-28 12:02:46 +00:00
fawkss/spec/02-variables.fkss

23 lines
290 B
Plaintext
Raw Normal View History

//
// Simple variable tests for Fawkss.
//
--- TEST ---
$width : 100%;
$__height1:10px;
$12color: black;
.test-element {
color:$12color;
height: $__height1; width: $width;
}
--- EXPECTED ---
.test-element {
color:black;
height: 10px; width: 100%;
}
--- END ---