chiark / gitweb /
Remove to-toml test script while I try to decide if that suite is too arbitrary to...
authorJeff Ober <jober@ziprecruiter.com>
Fri, 10 Jan 2020 20:52:29 +0000 (15:52 -0500)
committerJeff Ober <jober@ziprecruiter.com>
Fri, 10 Jan 2020 20:52:29 +0000 (15:52 -0500)
test-bin/to-toml [deleted file]

diff --git a/test-bin/to-toml b/test-bin/to-toml
deleted file mode 100755 (executable)
index dd9b8a0..0000000
+++ /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 $/; <STDIN> };
-my $data = decode_json $json;
-my $toml = eval{ to_toml $data };
-
-if ($@) {
-  warn $@;
-  exit 1;
-}
-
-say $toml;
-exit 0;