mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
375f887539
re-did static content from nancy
22 lines
642 B
C#
22 lines
642 B
C#
using System.IO;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Api.Frontend;
|
|
using NzbDrone.Test.Common;
|
|
|
|
namespace NzbDrone.Api.Test
|
|
{
|
|
[TestFixture]
|
|
public class StaticResourceMapperFixture : TestBase<StaticResourceMapper>
|
|
{
|
|
[TestCase("/app.js", Result = "ui|app.js")]
|
|
[TestCase("/series/app.js", Result = "ui|series|app.js")]
|
|
[TestCase("series/app.js", Result = "ui|series|app.js")]
|
|
[TestCase("Series/App.js", Result = "ui|series|app.js")]
|
|
public string should_map_paths(string path)
|
|
{
|
|
return Subject.Map(path).Replace(Path.DirectorySeparatorChar, '|');
|
|
}
|
|
|
|
}
|
|
}
|