stuff we did :D

This commit is contained in:
Keivan Beigi 2013-04-24 21:27:49 -07:00
commit 4cd75cd8aa
29 changed files with 648 additions and 479 deletions

View file

@ -55,6 +55,13 @@ namespace NzbDrone.Core.Test.Datastore
.EqualTo(_basicType);
}
[Test]
public void should_be_able_to_get_single()
{
Subject.Insert(_basicType);
Subject.SingleOrDefault().Should().NotBeNull();
}
[Test]
public void getting_model_with_invalid_id_should_throw()
{