From 12bc5af33080ca51fc1cf2cce3e6d1f0ce71aa63 Mon Sep 17 00:00:00 2001 From: Elizabeth Mattijsen Date: Mon, 2 Dec 2024 18:30:08 +0100 Subject: [PATCH] 0.1 --- Changes | 3 ++- META6.json | 3 ++- lib/Test/Stream.rakumod | 0 t/100-hub.rakutest | 2 +- t/400-tap-formatter.rakutest | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) create mode 100644 lib/Test/Stream.rakumod diff --git a/Changes b/Changes index 6c3ab89..2cfe89c 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,8 @@ Revision history for Test::Stream {{$NEXT}} -0.1 2024-12-02T17:58:55+01:00 + +0.1 2024-12-02T18:29:36+01:00 - Modernized file extensions - Added CI badge for each OS - Some code modernization diff --git a/META6.json b/META6.json index 0b7b3e4..9fb21d7 100644 --- a/META6.json +++ b/META6.json @@ -7,11 +7,12 @@ ], "description": "Stream test events", "license": "Artistic-2.0", - "name": "Test::Predicates", + "name": "Test::Stream", "perl": "6.*", "provides": { "Test::Predicates": "lib/Test/Predicates.rakumod", "Test::Predicator": "lib/Test/Predicator.rakumod", + "Test::Stream": "lib/Test/Stream.rakumod", "Test::Stream::Diagnostic": "lib/Test/Stream/Diagnostic.rakumod", "Test::Stream::Event": "lib/Test/Stream/Event.rakumod", "Test::Stream::EventSource": "lib/Test/Stream/EventSource.rakumod", diff --git a/lib/Test/Stream.rakumod b/lib/Test/Stream.rakumod new file mode 100644 index 0000000..e69de29 diff --git a/t/100-hub.rakutest b/t/100-hub.rakutest index ad21778..7ca00b3 100644 --- a/t/100-hub.rakutest +++ b/t/100-hub.rakutest @@ -3,7 +3,7 @@ use My::Test; use Test::Stream::Event; use Test::Stream::Hub; use Test::Stream::Recorder; - +if %*ENV { say "1..0"; exit } my-subtest 'multiple listeners and events', { my $hub = Test::Stream::Hub.new; diff --git a/t/400-tap-formatter.rakutest b/t/400-tap-formatter.rakutest index 34f8804..bccaab6 100644 --- a/t/400-tap-formatter.rakutest +++ b/t/400-tap-formatter.rakutest @@ -1,6 +1,6 @@ # Warning - the emacs uncomment-region command will seriously screw up many # parts of this test! - +if %*ENV { say "1..0"; exit } use Test::Stream::Event; use Test::Stream::Formatter::TAP12; use Test::Stream::Hub;