mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-01-06 06:41:40 +02:00
added test for HistoryRepository.Grabbed()
This commit is contained in:
parent
d5cbd5dc33
commit
b055fc5ade
@ -41,5 +41,19 @@ public void should_read_write_dictionary()
|
|||||||
|
|
||||||
StoredModel.Data.Should().HaveCount(2);
|
StoredModel.Data.Should().HaveCount(2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void grabbed_should_return_grabbed_items()
|
||||||
|
{
|
||||||
|
var history = Builder<History.History>
|
||||||
|
.CreateListOfSize(5)
|
||||||
|
.Random(3)
|
||||||
|
.With(c => c.EventType = HistoryEventType.Grabbed)
|
||||||
|
.BuildListOfNew();
|
||||||
|
|
||||||
|
Subject.InsertMany(history);
|
||||||
|
|
||||||
|
Subject.Grabbed().Should().HaveCount(3);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user