We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 927bd5b commit 1b2e545Copy full SHA for 1b2e545
tests/MessagebirdChannelTest.php
@@ -41,6 +41,13 @@ public function test_it_shares_message()
41
$this->client->shouldReceive('send')->once();
42
$this->channel->send($this->notifiable, $this->notification);
43
}
44
+
45
+ /** @test */
46
+ public function if_string_message_can_be_send()
47
+ {
48
+ $this->client->shouldReceive('send')->once();
49
+ $this->channel->send('Test by string', $this->notification);
50
+ }
51
52
53
class TestNotifiable
0 commit comments