From f3f846be62f3715ad2a716043c8e92806c2472fa Mon Sep 17 00:00:00 2001 From: Matias Linares Date: Sun, 28 Mar 2021 19:14:56 -0300 Subject: Add read-markers api support --- t/30-room.t | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 't') 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, :id); +can-ok $room, 'read-marker'; + +# Integrations tests; unless %*ENV { skip-rest 'No test server setted'; -- cgit v1.2.3-54-g00ecf