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