From 211023f4acff106cf0a564e9650664a54cac375d Mon Sep 17 00:00:00 2001 From: Jeff Ober Date: Fri, 10 Jan 2020 15:52:29 -0500 Subject: [PATCH] Remove to-toml test script while I try to decide if that suite is too arbitrary to worry about --- test-bin/to-toml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 test-bin/to-toml diff --git a/test-bin/to-toml b/test-bin/to-toml deleted file mode 100755 index dd9b8a0..0000000 --- a/test-bin/to-toml +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env perl - -use strict; -use warnings; -use v5.14; -use lib './lib'; - -use TOML::Tiny qw(to_toml); -use JSON::PP qw(decode_json); - -my $json = do{ local $/; }; -my $data = decode_json $json; -my $toml = eval{ to_toml $data }; - -if ($@) { - warn $@; - exit 1; -} - -say $toml; -exit 0; -- 2.30.2