From 14370ef0978b3955852afb9159ae7414471f6324 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Thu, 27 Apr 2017 15:01:23 +0200 Subject: Update method sigs, type checking and tests --- t/01-reading.t | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 't/01-reading.t') diff --git a/t/01-reading.t b/t/01-reading.t index 0792188..f834226 100644 --- a/t/01-reading.t +++ b/t/01-reading.t @@ -4,14 +4,13 @@ use v6.c; use Test; use lib "lib"; -plan 5; +plan 4; use Config; my $config = Config.new(); throws-like { $config.read("t/files/none") }, Config::Exception::FileNotFoundException, "Reading nonexisting file"; -throws-like { $config.read("t/files/config") }, Config::Exception::UnknownTypeException, "Reading file of unknown type"; throws-like { $config.read("t/files/config", "Config::Parser:NoSuchParserForTest") }, Config::Exception::MissingParserException, "Using non-existing parser"; my $hash = { -- cgit v1.1