~ubuntu-branches/ubuntu/trusty/syslog-ng/trusty-proposed

« back to all changes in this revision

Viewing changes to modules/afmongodb/libmongo-client/tests/unit/bson/bson_cursor_find.c

  • Committer: Package Import Robot
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2013-05-26 09:06:21 UTC
  • mfrom: (1.3.11)
  • Revision ID: package-import@ubuntu.com-20130526090621-8z2s0oi21eoljb9x
Tags: 3.3.9-1
* New upstream release.
* Include missed ivykis header (closes: #708793).

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
  ok (bson_cursor_find (c, "int64") == TRUE,
30
30
      "bson_cursor_find() works, even after a previous failure");
31
31
 
 
32
  ok (bson_cursor_find (c, "int6") == FALSE,
 
33
      "bson_cursor_find() does not match prefixes");
 
34
 
32
35
  bson_cursor_free (c);
33
36
  bson_free (b);
34
37
}
35
38
 
36
 
RUN_TEST (6, bson_cursor_find);
 
39
RUN_TEST (7, bson_cursor_find);