diff --git a/tests/samples/list_factory_nested.blp b/tests/samples/list_factory_nested.blp deleted file mode 100644 index 86a59b3..0000000 --- a/tests/samples/list_factory_nested.blp +++ /dev/null @@ -1,17 +0,0 @@ -using Gtk 4.0; - -Gtk.ListView { - factory: Gtk.BuilderListItemFactory list_item_factory { - template ListItem { - child: Gtk.ListView { - factory: Gtk.BuilderListItemFactory list_item_factory { - template ListItem { - child: Gtk.Label { - label: bind template.item as <$MyObject>.name; - }; - } - }; - }; - } - }; -} diff --git a/tests/samples/list_factory_nested.ui b/tests/samples/list_factory_nested.ui deleted file mode 100644 index 44cdb2b..0000000 --- a/tests/samples/list_factory_nested.ui +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - -]]> - - - - diff --git a/tests/samples/list_factory_nested_dec.blp b/tests/samples/list_factory_nested_dec.blp deleted file mode 100644 index 755491c..0000000 --- a/tests/samples/list_factory_nested_dec.blp +++ /dev/null @@ -1,18 +0,0 @@ -using Gtk 4.0; - -ListView { - factory: BuilderListItemFactory list_item_factory { - template ListItem { - child: ListView { - factory: BuilderListItemFactory list_item_factory { - template ListItem { - child: Label { - label: bind template.item as <$MyObject>.name; - }; - } - }; - }; - } - }; -} -