diff options
author | Matias Linares <matiaslina@gmail.com> | 2018-08-08 22:35:21 -0300 |
---|---|---|
committer | Matias Linares <matiaslina@gmail.com> | 2018-08-08 22:35:21 -0300 |
commit | e69b990cf4ac80adac0496d988717b49f41547d0 (patch) | |
tree | 7bec7f0ff4f1c3b35435cbcb3090d031fbdc5796 /t | |
parent | 1543101e2cc0b124df8031d3a5b003280b5ce253 (diff) | |
download | perl6-matrix-client-e69b990cf4ac80adac0496d988717b49f41547d0.tar.gz |
Return '' if there's no m.room.name event for that room
See issue #13 in github.
Diffstat (limited to 't')
-rw-r--r-- | t/30-room.t | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/t/30-room.t b/t/30-room.t index e12a17c..56321a0 100644 --- a/t/30-room.t +++ b/t/30-room.t @@ -80,15 +80,11 @@ subtest 'name' => { my $name = "Name room test"; my $test-room = $client.create-room: - :creation_content({ - "m.federate" => False - }); + :creation_content({ + "m.federate" => False + }); - throws-like { - $test-room.name() - }, X::Matrix::Response, - message => /M_NOT_FOUND/, - '.name without name gives event not found'; + is $test-room.name(), ''; lives-ok { $test-room.send-state('m.room.name', :name($name)) |