mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
11 lines
268 B
JavaScript
11 lines
268 B
JavaScript
'use strict'
|
|
const helper = require('./../test-helper')
|
|
const assert = require('assert')
|
|
|
|
const suite = new helper.Suite()
|
|
|
|
suite.test('Native should not be enumerable', () => {
|
|
const keys = Object.keys(helper.pg)
|
|
assert.strictEqual(keys.indexOf('native'), -1)
|
|
})
|