summaryrefslogtreecommitdiff
path: root/tests/unit/mongo/sync-gridfs-chunk/sync_gridfs_chunked_file_free.c
blob: c9fddfaf82721da609d08afb5f66573e98e006e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "test.h"
#include "mongo.h"

#include <errno.h>

void
test_mongo_sync_gridfs_chunked_file_free (void)
{
  errno = 0;
  mongo_sync_gridfs_chunked_file_free (NULL);

  cmp_ok (errno, "==", ENOTCONN,
          "mongo_sync_gridfs_chunked_file_free() fails with a NULL file");
}

RUN_TEST (1, mongo_sync_gridfs_chunked_file_free);