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

26 lines
275 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 ---