summaryrefslogtreecommitdiff
path: root/test/js/file_source.test.js
blob: 72f2180f208f078a74b5f5d33c0185646590c9e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
'use strict';

/* jshint node: true */

var test = require('tape');
var mbgl = require('../..');

test('FileSource', function(t) {
    t.test('constructor', function(t) {
        t.test('must be called with new', function(t) {
            t.throws(function() {
                mbgl.FileSource();
            }, /Use the new operator to create new FileSource objects/);
            t.end();
        });

        t.end();
    });

    t.end();
});