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