mirror of https://github.com/lidarr/Lidarr
Added lunr back to backgrid filter
Added HistoryResource test to ResourceMappingFixture
This commit is contained in:
parent
d13a56df01
commit
a414a4663e
|
@ -2,6 +2,7 @@
|
|||
using NUnit.Framework;
|
||||
using NzbDrone.Api.Config;
|
||||
using NzbDrone.Api.Episodes;
|
||||
using NzbDrone.Api.History;
|
||||
using NzbDrone.Api.Indexers;
|
||||
using NzbDrone.Api.Mapping;
|
||||
using NzbDrone.Api.RootFolders;
|
||||
|
@ -26,6 +27,7 @@ namespace NzbDrone.Api.Test.MappingTests
|
|||
[TestCase(typeof(ReportInfo), typeof(ReleaseResource))]
|
||||
[TestCase(typeof(ParsedEpisodeInfo), typeof(ReleaseResource))]
|
||||
[TestCase(typeof(DownloadDecision), typeof(ReleaseResource))]
|
||||
[TestCase(typeof(Core.History.History), typeof(HistoryResource))]
|
||||
public void matching_fields(Type modelType, Type resourceType)
|
||||
{
|
||||
MappingValidation.ValidateMapping(modelType, resourceType);
|
||||
|
|
Loading…
Reference in New Issue