Mercurial > altnet-hispano
view Agendas/trunk/src/Agendas.Tests/IdentityContextTests.cs @ 244:31fb96912d37
Ticket 162: Publicaciones con Nro Orden repetido.
author | juanjose.montesdeocaarbos |
---|---|
date | Thu, 06 Oct 2011 09:09:37 -0300 |
parents | 1deccd6c3cb2 |
children |
line wrap: on
line source
using AltNetHispano.Agendas.Domain; using NUnit.Framework; namespace AltNetHispano.Agendas.Tests { [TestFixture] public class IdentityContextTests : TestBase { [Test] public void IsInRole() { var persona = new Persona("Nelo"); persona.Roles.Add(Roles.Usuario); Assert.IsTrue(IdentityContext.IsInRole(persona, new[] { Roles.Usuario })); Assert.IsFalse(IdentityContext.IsInRole(persona, new[] { Roles.Administrador })); } } }