public void HasPackageScriptsToRun_OnePackageInOperationsHasInitPowerShellScript_ReturnsTrue()
        {
            CreateSolution();
            action.PackageId = "Test";
            AddInstallOperationWithFile(@"tools\init.ps1");

            bool hasPackageScripts = action.HasPackageScriptsToRun();

            Assert.IsTrue(hasPackageScripts);
        }