1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-19 21:46:50 -04:00

event aggregator is singleton to prevent it from being disposed.

This commit is contained in:
kay.one
2013-03-30 15:43:19 -07:00
parent f2886d89de
commit af3282630f
6 changed files with 26 additions and 6 deletions
@@ -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();
}
}
}