Browse Source

Merge branch 'master' of github.com:brianc/node-sql

auto-join
Paul Winkler 12 years ago
parent
commit
8b0c666805
  1. 2
      package.json
  2. 0
      test/dialects/aggregate-tests.js
  3. 0
      test/dialects/alter-table-tests.js
  4. 0
      test/dialects/create-table-tests.js
  5. 0
      test/dialects/delete-tests.js
  6. 0
      test/dialects/drop-table-tests.js
  7. 0
      test/dialects/group-by-tests.js
  8. 0
      test/dialects/index.js
  9. 0
      test/dialects/insert-tests.js
  10. 0
      test/dialects/join-tests.js
  11. 0
      test/dialects/limit-and-offset-tests.js
  12. 0
      test/dialects/namespace-tests.js
  13. 0
      test/dialects/order-tests.js
  14. 0
      test/dialects/schema-tests.js
  15. 0
      test/dialects/shortcut-tests.js
  16. 0
      test/dialects/support.js
  17. 0
      test/dialects/table-tests.js
  18. 0
      test/dialects/update-tests.js
  19. 17
      test/index.js

2
package.json

@ -2,7 +2,7 @@
"author": "brianc <brian.m.carlson@gmail.com>",
"name": "sql",
"description": "sql builder",
"version": "0.2.4",
"version": "0.3.0",
"homepage": "https://github.com/brianc/node-sql",
"repository": {
"type": "git",

0
test/postgres/aggregate-tests.js → test/dialects/aggregate-tests.js

0
test/postgres/alter-table-tests.js → test/dialects/alter-table-tests.js

0
test/postgres/create-table-tests.js → test/dialects/create-table-tests.js

0
test/postgres/delete-tests.js → test/dialects/delete-tests.js

0
test/postgres/drop-table-tests.js → test/dialects/drop-table-tests.js

0
test/postgres/group-by-tests.js → test/dialects/group-by-tests.js

0
test/postgres/index.js → test/dialects/index.js

0
test/postgres/insert-tests.js → test/dialects/insert-tests.js

0
test/postgres/join-tests.js → test/dialects/join-tests.js

0
test/postgres/limit-and-offset-tests.js → test/dialects/limit-and-offset-tests.js

0
test/postgres/namespace-tests.js → test/dialects/namespace-tests.js

0
test/postgres/order-tests.js → test/dialects/order-tests.js

0
test/postgres/schema-tests.js → test/dialects/schema-tests.js

0
test/postgres/shortcut-tests.js → test/dialects/shortcut-tests.js

0
test/postgres/support.js → test/dialects/support.js

0
test/postgres/table-tests.js → test/dialects/table-tests.js

0
test/postgres/update-tests.js → test/dialects/update-tests.js

17
test/index.js

@ -7,16 +7,15 @@ var testDir = path.dirname(require.main.filename);
var directories = [
testDir,
testDir + '/postgres'
testDir + '/dialects'
];
directories.forEach(function (d) {
fs.readdir(d, function(err, files) {
if(err) throw err;
/*jshint boss: true */
for(var i = 0, file; file = files[i]; i++) {
var filePath = path.join(d, file);
require(filePath);
}
});
var files = fs.readdirSync(d);
/*jshint boss: true */
for(var i = 0, file; file = files[i]; i++) {
var filePath = path.join(d, file);
console.log(filePath);
require(filePath);
}
});

Loading…
Cancel
Save