mirror of https://github.com/abpframework/abp.git
24 changed files with 51 additions and 48 deletions
@ -0,0 +1,3 @@ |
|||
using System.Runtime.CompilerServices; |
|||
|
|||
[assembly: InternalsVisibleTo("Volo.Abp.VirtualFileSystem.Tests")] |
|||
@ -0,0 +1 @@ |
|||
//jquery-3-1-1-min.js-contents
|
|||
@ -1 +0,0 @@ |
|||
//jquery-3.1.1.min.js-contents
|
|||
@ -0,0 +1,14 @@ |
|||
using Shouldly; |
|||
using Xunit; |
|||
|
|||
namespace Volo.Abp.VirtualFileSystem |
|||
{ |
|||
public class VirtualFilePathHelper_Tests |
|||
{ |
|||
[Fact] |
|||
public void NormalizePath() |
|||
{ |
|||
VirtualFilePathHelper.NormalizePath("~/test-one/test-two/test-three.js").ShouldBe("~/test_one/test_two/test-three.js"); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue