2011-10-06 16:37:34 +00:00
|
|
|
|
// ReSharper disable RedundantUsingDirective
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2011-11-14 00:22:18 +00:00
|
|
|
|
|
2011-10-06 16:37:34 +00:00
|
|
|
|
using FizzWare.NBuilder;
|
|
|
|
|
using FluentAssertions;
|
|
|
|
|
using Moq;
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using NzbDrone.Core.Helpers;
|
|
|
|
|
using NzbDrone.Core.Model.Notification;
|
|
|
|
|
using NzbDrone.Core.Providers;
|
|
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
|
using NzbDrone.Core.Test.Framework;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Test
|
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
// ReSharper disable InconsistentNaming
|
2011-11-13 07:27:16 +00:00
|
|
|
|
public class SortHelperTest : CoreTest
|
2011-10-06 16:37:34 +00:00
|
|
|
|
{
|
|
|
|
|
//American Gladiators
|
|
|
|
|
//Ancient Apocalypse
|
|
|
|
|
//There Will Be Brawl
|
|
|
|
|
|
|
|
|
|
[TestCase("The Office (US)", "Office (US)")]
|
|
|
|
|
[TestCase("A Man in Anger", "Man in Anger")]
|
|
|
|
|
[TestCase("An Idiot Abroad", "Idiot Abroad")]
|
|
|
|
|
[TestCase("American Gladiators", "American Gladiators")]
|
|
|
|
|
[TestCase("Ancient Apocalyps", "Ancient Apocalyps")]
|
|
|
|
|
[TestCase("There Will Be Brawl", "There Will Be Brawl")]
|
|
|
|
|
[TestCase("30 Rock", "30 Rock")]
|
|
|
|
|
[TestCase(null, "")]
|
|
|
|
|
public void SkipArticles(string title, string expected)
|
|
|
|
|
{
|
|
|
|
|
var result = SortHelper.SkipArticles(title);
|
|
|
|
|
result.Should().Be(expected);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|