fmt tests

This commit is contained in:
ConnorSkees 2020-02-16 15:34:07 -05:00
parent 3512873363
commit 4238124344

View File

@ -307,14 +307,8 @@ test!(
"a {\n color: 1 + foo();\n}\n",
"a {\n color: 1foo();\n}\n"
);
test!(
positive_integer,
"a {\n color: 1;\n}\n"
);
test!(
negative_integer,
"a {\n color: -1;\n}\n"
);
test!(positive_integer, "a {\n color: 1;\n}\n");
test!(negative_integer, "a {\n color: -1;\n}\n");
test!(
positive_float_no_leading_zero,
"a {\n color: .1;\n}\n",
@ -325,11 +319,5 @@ test!(
"a {\n color: -.1;\n}\n",
"a {\n color: -0.1;\n}\n"
);
test!(
positive_float_leading_zero,
"a {\n color: 0.1;\n}\n"
);
test!(
negative_float_leading_zero,
"a {\n color: -0.1;\n}\n"
);
test!(positive_float_leading_zero, "a {\n color: 0.1;\n}\n");
test!(negative_float_leading_zero, "a {\n color: -0.1;\n}\n");