From 7c7bd56b2ed9c05adf4042df2c8f1e6acf1e6ec1 Mon Sep 17 00:00:00 2001 From: Raymond Feng Date: Mon, 17 Sep 2018 09:00:12 -0700 Subject: [PATCH] Add IBM copyright and MIT license headers --- test/kv-memory.js | 5 +++++ test/kvao.suite.js | 5 +++++ test/list.test.js | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/test/kv-memory.js b/test/kv-memory.js index cca00560..1211ab71 100644 --- a/test/kv-memory.js +++ b/test/kv-memory.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; var kvMemory = require('../lib/connectors/kv-memory'); var DataSource = require('..').DataSource; diff --git a/test/kvao.suite.js b/test/kvao.suite.js index a464d7a0..62c50750 100644 --- a/test/kvao.suite.js +++ b/test/kvao.suite.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2013,2016. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; var debug = require('debug')('test'); diff --git a/test/list.test.js b/test/list.test.js index b1c1d9aa..c8e4b5db 100644 --- a/test/list.test.js +++ b/test/list.test.js @@ -1,3 +1,8 @@ +// Copyright IBM Corp. 2018. All Rights Reserved. +// Node module: loopback-datasource-juggler +// This file is licensed under the MIT License. +// License text available at https://opensource.org/licenses/MIT + 'use strict'; var should = require('./init.js');