aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
Diffstat (limited to 't')
-rw-r--r--t/30-room.t9
1 files changed, 8 insertions, 1 deletions
diff --git a/t/30-room.t b/t/30-room.t
index 9cec207..b9f7cfd 100644
--- a/t/30-room.t
+++ b/t/30-room.t
@@ -1,7 +1,14 @@
use lib 'lib';
use Test;
use Matrix::Client;
-plan 10;
+plan 12;
+
+use-ok 'Matrix::Client::Room';
+
+my $room = Matrix::Client::Room.new(:home-server<test>, :id<!something>);
+can-ok $room, 'read-marker';
+
+# Integrations tests;
unless %*ENV<MATRIX_CLIENT_TEST_SERVER> {
skip-rest 'No test server setted';