From 0b47e2cfd2c582ebf792af5392483e8b18dc960f Mon Sep 17 00:00:00 2001 From: Nico Burns Date: Mon, 13 May 2024 13:24:07 +0100 Subject: [PATCH] Disable grid_aspect_ratio_fill_child_min_width test --- ...id_aspect_ratio_fill_child_min_width.html} | 0 .../grid_aspect_ratio_fill_child_min_width.rs | 85 ------------------- tests/generated/grid/mod.rs | 2 - 3 files changed, 87 deletions(-) rename test_fixtures/grid/{grid_aspect_ratio_fill_child_min_width.html => xgrid_aspect_ratio_fill_child_min_width.html} (100%) delete mode 100644 tests/generated/grid/grid_aspect_ratio_fill_child_min_width.rs diff --git a/test_fixtures/grid/grid_aspect_ratio_fill_child_min_width.html b/test_fixtures/grid/xgrid_aspect_ratio_fill_child_min_width.html similarity index 100% rename from test_fixtures/grid/grid_aspect_ratio_fill_child_min_width.html rename to test_fixtures/grid/xgrid_aspect_ratio_fill_child_min_width.html diff --git a/tests/generated/grid/grid_aspect_ratio_fill_child_min_width.rs b/tests/generated/grid/grid_aspect_ratio_fill_child_min_width.rs deleted file mode 100644 index cb625b334..000000000 --- a/tests/generated/grid/grid_aspect_ratio_fill_child_min_width.rs +++ /dev/null @@ -1,85 +0,0 @@ -#[test] -fn grid_aspect_ratio_fill_child_min_width() { - #[allow(unused_imports)] - use taffy::{prelude::*, tree::Layout, TaffyTree}; - let mut taffy: TaffyTree = TaffyTree::new(); - let node0 = taffy - .new_leaf_with_context( - taffy::style::Style { - min_size: taffy::geometry::Size { width: auto(), height: taffy::style::Dimension::Length(50f32) }, - aspect_ratio: Some(2f32), - ..Default::default() - }, - crate::TextMeasure { - text_content: "", - writing_mode: crate::WritingMode::Horizontal, - _aspect_ratio: Some(2f32), - }, - ) - .unwrap(); - let node = taffy - .new_with_children( - taffy::style::Style { - display: taffy::style::Display::Grid, - size: taffy::geometry::Size { - width: taffy::style::Dimension::Length(100f32), - height: taffy::style::Dimension::Length(100f32), - }, - ..Default::default() - }, - &[node0], - ) - .unwrap(); - taffy.compute_layout_with_measure(node, taffy::geometry::Size::MAX_CONTENT, crate::test_measure_function).unwrap(); - println!("\nComputed tree:"); - taffy.print_tree(node); - println!(); - #[cfg_attr(not(feature = "content_size"), allow(unused_variables))] - let layout @ Layout { size, location, .. } = taffy.layout(node).unwrap(); - assert_eq!(size.width, 100f32, "width of node {:?}. Expected {}. Actual {}", node, 100f32, size.width); - assert_eq!(size.height, 100f32, "height of node {:?}. Expected {}. Actual {}", node, 100f32, size.height); - assert_eq!(location.x, 0f32, "x of node {:?}. Expected {}. Actual {}", node, 0f32, location.x); - assert_eq!(location.y, 0f32, "y of node {:?}. Expected {}. Actual {}", node, 0f32, location.y); - #[cfg(feature = "content_size")] - assert_eq!( - layout.scroll_width(), - 0f32, - "scroll_width of node {:?}. Expected {}. Actual {}", - node, - 0f32, - layout.scroll_width() - ); - #[cfg(feature = "content_size")] - assert_eq!( - layout.scroll_height(), - 0f32, - "scroll_height of node {:?}. Expected {}. Actual {}", - node, - 0f32, - layout.scroll_height() - ); - #[cfg_attr(not(feature = "content_size"), allow(unused_variables))] - let layout @ Layout { size, location, .. } = taffy.layout(node0).unwrap(); - assert_eq!(size.width, 100f32, "width of node {:?}. Expected {}. Actual {}", node0, 100f32, size.width); - assert_eq!(size.height, 50f32, "height of node {:?}. Expected {}. Actual {}", node0, 50f32, size.height); - assert_eq!(location.x, 0f32, "x of node {:?}. Expected {}. Actual {}", node0, 0f32, location.x); - assert_eq!(location.y, 0f32, "y of node {:?}. Expected {}. Actual {}", node0, 0f32, location.y); - #[cfg(feature = "content_size")] - assert_eq!( - layout.scroll_width(), - 0f32, - "scroll_width of node {:?}. Expected {}. Actual {}", - node0, - 0f32, - layout.scroll_width() - ); - #[cfg(feature = "content_size")] - assert_eq!( - layout.scroll_height(), - 0f32, - "scroll_height of node {:?}. Expected {}. Actual {}", - node0, - 0f32, - layout.scroll_height() - ); -} diff --git a/tests/generated/grid/mod.rs b/tests/generated/grid/mod.rs index d4099847b..6dccc9a9c 100644 --- a/tests/generated/grid/mod.rs +++ b/tests/generated/grid/mod.rs @@ -141,8 +141,6 @@ mod grid_aspect_ratio_fill_child_max_width; #[cfg(feature = "grid")] mod grid_aspect_ratio_fill_child_min_height; #[cfg(feature = "grid")] -mod grid_aspect_ratio_fill_child_min_width; -#[cfg(feature = "grid")] mod grid_aspect_ratio_fill_child_width; #[cfg(feature = "grid")] mod grid_aspect_ratio_overridden_by_explicit_sizes;