From d2a39e274db380790584c7008a9b2302f5993fc7 Mon Sep 17 00:00:00 2001 From: Connor Skees Date: Mon, 17 Aug 2020 04:20:01 -0400 Subject: [PATCH] add ignored interpolated color test --- tests/color.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/color.rs b/tests/color.rs index b32c743..15d74cd 100644 --- a/tests/color.rs +++ b/tests/color.rs @@ -647,3 +647,9 @@ test!( "a {\n color: rgba(1 2 max(3, 3));\n}\n", "a {\n color: rgba(1, 2, max(3, 3));\n}\n" ); +test!( + #[ignore = "we do not check if interpolation occurred"] + interpolated_named_color_is_not_color, + "a {\n color: type-of(r#{e}d);\n}\n", + "a {\n color: string;\n}\n" +);