Removed lazy loading test for history

This commit is contained in:
Mark McDowall 2013-05-10 15:41:05 -07:00
parent d320c2b6a9
commit 2912561d0e
1 changed files with 23 additions and 23 deletions

View File

@ -72,29 +72,29 @@ namespace NzbDrone.Core.Test.Datastore
loadedSeries.Covers.Value.Should().HaveSameCount(covers); loadedSeries.Covers.Value.Should().HaveSameCount(covers);
}*/ }*/
[Test] // [Test]
public void one_to_one() // public void one_to_one()
{ // {
var episode = Builder<Episode>.CreateNew() // var episode = Builder<Episode>.CreateNew()
.With(c => c.Id = 0) // .With(c => c.Id = 0)
.Build(); // .Build();
//
Db.Insert(episode); // Db.Insert(episode);
//
//
var history = Builder<History.History>.CreateNew() // var history = Builder<History.History>.CreateNew()
.With(c => c.Id = 0) // .With(c => c.Id = 0)
.With(c => c.EpisodeId = episode.Id) // .With(c => c.EpisodeId = episode.Id)
.With(c => c.Quality = new QualityModel()) // .With(c => c.Quality = new QualityModel())
.Build(); // .Build();
//
Db.Insert(history); // Db.Insert(history);
//
var loadedEpisode = Db.Single<History.History>().Episode.Value; // var loadedEpisode = Db.Single<History.History>().Episode.Value;
//
loadedEpisode.Should().NotBeNull(); // loadedEpisode.Should().NotBeNull();
loadedEpisode.ShouldHave().AllProperties().But(c => c.SeriesTitle).EqualTo(episode); // loadedEpisode.ShouldHave().AllProperties().But(c => c.SeriesTitle).EqualTo(episode);
} // }
[Test] [Test]