mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-18 21:55:12 -04:00
Update series test
This commit is contained in:
@@ -54,5 +54,20 @@ namespace NzbDrone.Core.Test.TvTests.SeriesServiceTests
|
||||
s.Path.Should().Be(expectedPath);
|
||||
});
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_be_able_to_update_many_series()
|
||||
{
|
||||
var series = Builder<Series>.CreateListOfSize(50)
|
||||
.All()
|
||||
.With(s => s.Path = (@"C:\Test\TV\" + s.Path).AsOsAgnostic())
|
||||
.Build()
|
||||
.ToList();
|
||||
|
||||
var newRoot = @"C:\Test\TV2".AsOsAgnostic();
|
||||
series.ForEach(s => s.RootFolderPath = newRoot);
|
||||
|
||||
Subject.UpdateSeries(series);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user