From 019e305f808026f374659c71aacb429c8c624201 Mon Sep 17 00:00:00 2001 From: JJ Merelo Date: Sun, 10 Feb 2019 08:53:00 +0100 Subject: [PATCH 1/2] Done with the number of tests, closes #2 --- t/01-basics.t | 2 -- 1 file changed, 2 deletions(-) diff --git a/t/01-basics.t b/t/01-basics.t index 4050563..2c550d5 100644 --- a/t/01-basics.t +++ b/t/01-basics.t @@ -6,8 +6,6 @@ my %producer-count; my $cache = Cache::Async.new(producer => sub ($k) { my $i = %producer-count{$k}++; return "$k/$i"; }); -plan 11; - ok(sum(%producer-count.values) == 0, "no initial producer state"); $cache.put('X', '??'); From af3ba3683a37a0f70c994dad7f8755dbe3d039f9 Mon Sep 17 00:00:00 2001 From: JJ Merelo Date: Sun, 10 Feb 2019 08:58:33 +0100 Subject: [PATCH 2/2] :see_no_evil: --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..546cb48 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.precomp \ No newline at end of file