aboutsummaryrefslogtreecommitdiff
path: root/t/reading.t
diff options
context:
space:
mode:
authorPatrick Spek <Tyil@users.noreply.github.com>2017-04-26 07:44:59 +0200
committerGitHub <noreply@github.com>2017-04-26 07:44:59 +0200
commitacdac7ea2f81e739c7e2b5cb37d3f3cdc71962a8 (patch)
treeed702ba420a3cda7f39f0b6b249b294f02dca487 /t/reading.t
parent60aff52595020f378cd0d1a4d9d75894e083b9e0 (diff)
parentb01a053e3d4012064a667745634010dd654b4777 (diff)
Merge pull request #1 from scriptkitties/docs
Improve documentation
Diffstat (limited to 't/reading.t')
-rw-r--r--t/reading.t15
1 files changed, 15 insertions, 0 deletions
diff --git a/t/reading.t b/t/reading.t
new file mode 100644
index 0000000..52859af
--- /dev/null
+++ b/t/reading.t
@@ -0,0 +1,15 @@
+#! /usr/bin/env perl6
+
+use v6.c;
+use Test;
+use lib "lib";
+
+plan 3;
+
+use Config;
+
+my $config = Config.new();
+
+throws-like { $config.read("nonexistant-config") }, Config::Exception::FileNotFoundException, "Reading nonexisting file";
+throws-like { $config.read("t/test-stub") }, Config::Exception::UnknownTypeException, "Reading file of unknown type";
+throws-like { $config.read("t/test-stub", "Config::Parser:NoSuchParserForTest") }, Config::Exception::MissingParserException, "Using non-existing parser";