This library provides RLV command processing and ease of use for checking current RLV permissions and restrictions
15 lines
332 B
C#
15 lines
332 B
C#
namespace LibreMetaverse.RLV.Tests.Restrictions
|
|
{
|
|
public class ChatShoutRestrictionTests : RestrictionsBase
|
|
{
|
|
#region @chatshout=<y/n>
|
|
[Fact]
|
|
public async Task CanChatShout()
|
|
{
|
|
await CheckSimpleCommand("chatShout", m => m.CanChatShout());
|
|
}
|
|
#endregion
|
|
|
|
}
|
|
}
|