Browse Source

rename 'postgres' dir to 'dialects'

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

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

2
test/index.js

@ -7,7 +7,7 @@ var testDir = path.dirname(require.main.filename);
var directories = [
testDir,
testDir + '/postgres'
testDir + '/dialects'
];
directories.forEach(function (d) {

Loading…
Cancel
Save