aboutsummaryrefslogtreecommitdiff
path: root/t/50-exception.t
diff options
context:
space:
mode:
Diffstat (limited to 't/50-exception.t')
-rw-r--r--t/50-exception.t12
1 files changed, 12 insertions, 0 deletions
diff --git a/t/50-exception.t b/t/50-exception.t
new file mode 100644
index 0000000..d252153
--- /dev/null
+++ b/t/50-exception.t
@@ -0,0 +1,12 @@
+use lib 'lib';
+use Test;
+use Matrix::Client;
+use Matrix::Client::Exception;
+
+plan 1;
+
+my $c = Matrix::Client.new(:home-server<https://matrix.org>);
+
+throws-like {
+ $c.get('/unknown-endpoint');
+}, X::Matrix::Response, 'Unknown endpoint throws exception';