24 lines
981 B
C#
24 lines
981 B
C#
|
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|||
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|||
|
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using Microsoft.DotNet.Cli.Utils;
|
|||
|
using Microsoft.DotNet.Tools.Test.Utilities;
|
|||
|
using FluentAssertions;
|
|||
|
|
|||
|
namespace Microsoft.DotNet.Configurer.UnitTests
|
|||
|
{
|
|||
|
public class GivenAPathCalculator
|
|||
|
{
|
|||
|
[NonWindowsOnlyFact]
|
|||
|
public void It_does_not_return_same_path_for_tools_package_and_tool_shim()
|
|||
|
{
|
|||
|
// shim name will conflict with the folder that is PackageId, if commandName and packageId are the same.
|
|||
|
var cliFolderPathCalculator = new CliFolderPathCalculator();
|
|||
|
cliFolderPathCalculator.ToolsPackagePath.Should().NotBe(cliFolderPathCalculator.ToolsShimPath);
|
|||
|
cliFolderPathCalculator.ToolsPackagePath.Should().NotBe(cliFolderPathCalculator.ToolsShimPathInUnix.Path);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|