1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-25 02:30:20 +02:00

added new test.

This commit is contained in:
kay.one 2013-02-15 20:17:23 -08:00
parent 1adc2892db
commit 00e2f225f8

View File

@ -56,6 +56,15 @@ public void update_item_with_root_index_0_should_faile()
Assert.Throws<InvalidOperationException>(() => Db.Update(testSeries));
}
[Test]
public void should_be_able_to_store_empty_list()
{
var series = new List<Series>();
Db.InsertMany(series);
}
[Test]
public void should_not_store_dirty_data_in_cache()
{