From 0a673777912bd948dcbb9abc425c0653d9da8ceb Mon Sep 17 00:00:00 2001 From: Yanick Champoux Date: Sun, 12 Nov 2023 12:27:48 -0500 Subject: [PATCH] add a todos.t with general todos --- t/todos.t | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 t/todos.t diff --git a/t/todos.t b/t/todos.t new file mode 100644 index 0000000..e157594 --- /dev/null +++ b/t/todos.t @@ -0,0 +1,9 @@ +use Test2::V0; +use Test2::Plugin::ExitSummary; + +todo 'general list of todos' => sub { + fail $_ for + 'blocked_attributes'; +}; + +done_testing;