Step 2 in renaming Orchard.Scripting to Orchard.Scripting.Dlr

--HG--
branch : dev
rename : src/Orchard.Tests.Modules/Scripting/ScriptingTests.cs => src/Orchard.Tests.Modules/Scripting.Dlr/ScriptingTests.cs
rename : src/Orchard.Tests.Modules/SimpleScripting/EvaluatorTests.cs => src/Orchard.Tests.Modules/Scripting/EvaluatorTests.cs
rename : src/Orchard.Tests.Modules/SimpleScripting/ParserTests.cs => src/Orchard.Tests.Modules/Scripting/ParserTests.cs
rename : src/Orchard.Tests.Modules/SimpleScripting/SimpleScriptingTests.cs => src/Orchard.Tests.Modules/Scripting/SimpleScriptingTests.cs
rename : src/Orchard.Tests.Modules/SimpleScripting/TokenizerTests.cs => src/Orchard.Tests.Modules/Scripting/TokenizerTests.cs
rename : src/Orchard.Web/Modules/Orchard.Scripting.Dlr/Orchard.Scripting.csproj => src/Orchard.Web/Modules/Orchard.Scripting.Dlr/Orchard.Scripting.Dlr.csproj
This commit is contained in:
Renaud Paquay
2010-11-28 10:01:59 -08:00
parent 02b0d69621
commit 5cdb528d2b
16 changed files with 28 additions and 28 deletions

View File

@@ -135,10 +135,10 @@
</ItemGroup>
<ItemGroup>
<Compile Include="CodeGeneration\Commands\CodeGenerationCommandsTests.cs" />
<Compile Include="SimpleScripting\EvaluatorTests.cs" />
<Compile Include="SimpleScripting\ParserTests.cs" />
<Compile Include="SimpleScripting\TokenizerTests.cs" />
<Compile Include="SimpleScripting\SimpleScriptingTests.cs" />
<Compile Include="Scripting\EvaluatorTests.cs" />
<Compile Include="Scripting\ParserTests.cs" />
<Compile Include="Scripting\TokenizerTests.cs" />
<Compile Include="Scripting\SimpleScriptingTests.cs" />
<Compile Include="DatabaseEnabledTestsBase.cs" />
<Compile Include="Media\Extensions\LongExtensionsTests.cs" />
<EmbeddedResource Include="Packaging\HelloDriver.cs.txt" />
@@ -148,7 +148,7 @@
<Compile Include="Roles\Controllers\AdminControllerTests.cs" />
<Compile Include="Roles\Services\RoleServiceTests.cs" />
<Compile Include="Migrations\SchemaCommandGeneratorTests.cs" />
<Compile Include="Scripting\ScriptingTests.cs" />
<Compile Include="Scripting.Dlr\ScriptingTests.cs" />
<Compile Include="Settings\Blueprint\ShellDescriptorManagerTests.cs" />
<Compile Include="Tags\Services\TagsServiceTests.cs" />
<Compile Include="Themes\Services\ThemeServiceTests.cs" />
@@ -196,9 +196,9 @@
<Project>{D10AD48F-407D-4DB5-A328-173EC7CB010F}</Project>
<Name>Orchard.Roles</Name>
</ProjectReference>
<ProjectReference Include="..\Orchard.Web\Modules\Orchard.Scripting\Orchard.Scripting.csproj">
<ProjectReference Include="..\Orchard.Web\Modules\Orchard.Scripting.Dlr\Orchard.Scripting.Dlr.csproj">
<Project>{2AD6973D-C7BB-416E-89FE-EEE34664E05F}</Project>
<Name>Orchard.Scripting</Name>
<Name>Orchard.Scripting.Dlr</Name>
</ProjectReference>
<ProjectReference Include="..\Orchard.Web\Modules\Orchard.Setup\Orchard.Setup.csproj">
<Project>{8C7FCBC2-E6E1-405E-BFB5-D8D9E67A09C4}</Project>

View File

@@ -5,10 +5,10 @@ using System.IO;
using Autofac;
using ClaySharp;
using NUnit.Framework;
using Orchard.Scripting.Services;
using Orchard.Scripting.Dlr.Services;
using Path = Bleroy.FluentPath.Path;
namespace Orchard.Tests.Modules.Scripting {
namespace Orchard.Tests.Modules.Scripting.Dlr {
[TestFixture]
public class ScriptingTests {
private IContainer _container;

View File

@@ -5,7 +5,7 @@ using System.Linq;
using NUnit.Framework;
using Orchard.Widgets.SimpleScripting.Compiler;
namespace Orchard.Tests.Modules.SimpleScripting {
namespace Orchard.Tests.Modules.Scripting {
[TestFixture]
public class EvaluatorTests {
[Test]

View File

@@ -4,7 +4,7 @@ using NUnit.Framework;
using Orchard.Widgets.SimpleScripting.Ast;
using Orchard.Widgets.SimpleScripting.Compiler;
namespace Orchard.Tests.Modules.SimpleScripting {
namespace Orchard.Tests.Modules.Scripting {
[TestFixture]
public class ParserTests {
[Test]

View File

@@ -4,7 +4,7 @@ using Orchard.Tests.Stubs;
using Orchard.Widgets.Services;
using Orchard.Widgets.SimpleScripting;
namespace Orchard.Tests.Modules.SimpleScripting {
namespace Orchard.Tests.Modules.Scripting {
[TestFixture]
public class SimpleScriptingTests {
[Test]

View File

@@ -1,7 +1,7 @@
using NUnit.Framework;
using Orchard.Widgets.SimpleScripting.Compiler;
namespace Orchard.Tests.Modules.SimpleScripting {
namespace Orchard.Tests.Modules.Scripting {
[TestFixture]
public class TokenizerTests {

View File

@@ -1,7 +1,7 @@
using System;
using Autofac;
using NUnit.Framework;
using Orchard.Scripting.Services;
using Orchard.Scripting.Dlr.Services;
using Orchard.Caching;
using Orchard.Tests.Stubs;
using Orchard.Widgets.RuleEngine;