Skip to content

Commit

Permalink
Removed obsolete unit tests.
Browse files Browse the repository at this point in the history
DocumentIdRangeShouldRemoveKeyRange and KeyRangeShouldRemoveDocumentIdRange belonged to a reverted functionality.

Change-Id: Ia3b19e5acd8d9adedbbdf3fd2dfa756f04384094
Reviewed-on: http://review.couchbase.org/8486
Tested-by: Bin Cui <bin.cui@gmail.com>
Reviewed-by: Bin Cui <bin.cui@gmail.com>
  • Loading branch information
enyim authored and bcui6611 committed Jul 28, 2011
1 parent d7c8c9f commit a97a63a
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions CouchbaseTests/CouchbaseViewTest_Params.cs
Original file line number Diff line number Diff line change
Expand Up @@ -79,38 +79,6 @@ public void DocumentIdRangeParametersShouldBeApplied()
});
}

[TestMethod]
public void DocumentIdRangeShouldRemoveKeyRange()
{
CheckViewParameters(
view => view.
StartKey("start-key").
EndKey("end-key").
StartDocumentId("start-doc").
EndDocumentId("end-doc"),
new Dictionary<string, string>()
{
{ "startKey_docid", "start-doc" },
{ "endKey_docid", "end-doc" }
});
}

[TestMethod]
public void KeyRangeShouldRemoveDocumentIdRange()
{
CheckViewParameters(
view => view.
StartDocumentId("start-doc").
EndDocumentId("end-doc").
StartKey("start-key").
EndKey("end-key"),
new Dictionary<string, string>()
{
{ "startKey", "start-key" },
{ "endKey", "end-key" }
});
}

[TestMethod]
public void LimitParameterShouldBeApplied()
{
Expand Down

0 comments on commit a97a63a

Please sign in to comment.