OpenSource » Database Migrator » Migrator2
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

Migrator Put unit tests back.

Changeset b9d51f2eecdd

Parent a528c0e1f358

by Profile picture of Brette L ScottBrette L Scott

Changes to one file · Browse files at b9d51f2eecdd Showing diff from parent a528c0e1f358 Diff from another changeset...

 
33
34
35
36
 
37
38
39
 
55
56
57
58
 
59
60
61
 
33
34
35
 
36
37
38
39
 
55
56
57
 
58
59
60
61
@@ -33,7 +33,7 @@
  [SetUp]   public void SetUp()   { - var dprovider = new SqlServerTransformationProvider("Server=DEVWKS01\\DEVWKS01HOST;Database=Master;Trusted_Connection=True;"); + var dprovider = new SqlServerTransformationProvider("Server=localhost;Database=Master;Trusted_Connection=True;");   var dropsql = @"/****** Object: Database [MigratorTest] Script Date: 04/22/2014 12:55:41 ******/   IF EXISTS (SELECT name FROM sys.databases WHERE name = N'MigratorTest')   DROP DATABASE [MigratorTest] @@ -55,7 +55,7 @@
  cmd.Dispose();     - _provider = new SqlServerTransformationProvider("Server=DEVWKS01\\DEVWKS01HOST;Database=MigratorTest;Trusted_Connection=True;"); + _provider = new SqlServerTransformationProvider("Server=localhost;Database=MigratorTest;Trusted_Connection=True;");   _migrator = new Migrator(_provider, typeof(FirstMigration).Assembly);   _upCalled.Clear();   _downCalled.Clear();