Skip to content

Commit

Permalink
Test for DNET-489.
Browse files Browse the repository at this point in the history
  • Loading branch information
cincuranet committed Mar 25, 2013
1 parent 763ab20 commit dbdce38
Showing 1 changed file with 10 additions and 0 deletions.
Expand Up @@ -167,6 +167,16 @@ public void Procedures()
Assert.AreEqual(1, procedures.Rows.Count);
}

[Test]
public void Procedures_ShouldSkipSchemaAndProperlyUseParametersForProcedureName()
{
DataTable procedures = Connection.GetSchema("Procedures");

procedures = Connection.GetSchema("Procedures", new string[] { null, "DUMMY_SCHEMA", "SELECT_DATA" });

Assert.AreEqual(1, procedures.Rows.Count);
}

[Test]
public void DataTypes()
{
Expand Down

0 comments on commit dbdce38

Please sign in to comment.