Skip to content

Commit

Permalink
Delete test that was added in a failing state
Browse files Browse the repository at this point in the history
This test was never passing. Deleting it.
  • Loading branch information
sethreno committed Apr 9, 2016
1 parent 4e6ef67 commit 8dc3b7f
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions test/DatabaseTester.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,24 +106,6 @@ public void TestCopy() {
}
}

[Test]
public void TestTableIndexesWithFilter() {
TestHelper.DropDb("TEST");
TestHelper.ExecSql("CREATE DATABASE TEST","");

TestHelper.ExecSql(@"CREATE TABLE MyTable (Id int, EndDate datetime)", "TEST");
TestHelper.ExecSql(@"CREATE NONCLUSTERED INDEX MyIndex ON MyTable (Id) WHERE (EndDate) IS NULL","TEST");

var db = new Database("TEST") {
Connection = TestHelper.GetConnString("TEST")
};
db.Load();
var result = db.ScriptCreate();
TestHelper.DropDb("TEST");

Assert.That(result, Is.StringContaining("CREATE NONCLUSTERED INDEX [MyIndex] ON [dbo].[MyTable] ([Id]) WHERE ([EndDate] IS NULL)"));
}

[Test]
[Ignore("test won't work without license key for sqldbdiff")]
public void TestDiffScript() {
Expand Down

0 comments on commit 8dc3b7f

Please sign in to comment.