mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-19 21:44:30 -04:00
event aggregator is singleton to prevent it from being disposed.
This commit is contained in:
+8
-1
@@ -9,7 +9,7 @@ namespace NzbDrone.Core.Test.ProviderTests
|
||||
{
|
||||
[TestFixture]
|
||||
|
||||
public class TvDbProviderTest : CoreTest<TvDbProxy>
|
||||
public class TvDbProxyFixture : CoreTest<TvDbProxy>
|
||||
{
|
||||
[TestCase("The Simpsons")]
|
||||
[TestCase("Family Guy")]
|
||||
@@ -50,5 +50,12 @@ namespace NzbDrone.Core.Test.ProviderTests
|
||||
details.Should().NotBeNull();
|
||||
details.Covers.Value.Should().NotBeEmpty();
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void should_be_able_to_get_list_of_episodes()
|
||||
{
|
||||
var details = Subject.GetEpisodes(75978);
|
||||
details.Should().NotBeEmpty();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user