From 3d64056c391f35fdabbabe12ab54da676e9aa164 Mon Sep 17 00:00:00 2001 From: Anatoliy Chakkaev Date: Sat, 16 Feb 2013 23:55:51 +0800 Subject: [PATCH] Absolute paths in README.md, fixes #208 --- README.md | 18 +++++++++--------- test/common_test.js | 1 - 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 3a52ee8e..abcb375b 100644 --- a/README.md +++ b/README.md @@ -43,15 +43,15 @@ check following list of available adapters MongoDB MongoDB - jugglingdb-mongodb + jugglingdb-mongodb Anatoliy Chakkaev Build Status - MySQL MySQL - jugglingdb-mysql + MySQL MySQL + jugglingdb-mysql Anatoliy Chakkaev Build Status @@ -59,7 +59,7 @@ check following list of available adapters CouchDB CouchDB / nano - jugglingdb-nano + jugglingdb-nano Nicholas Westlake Build Status @@ -67,7 +67,7 @@ check following list of available adapters PostgreSQL PostgreSQL - jugglingdb-postgres + jugglingdb-postgres Anatoliy Chakkaev Build Status @@ -75,15 +75,15 @@ check following list of available adapters Redis Redis - jugglingdb-redis + jugglingdb-redis Anatoliy Chakkaev Build Status - SQLite SQLite - jugglingdb-sqlite3 + SQLite SQLite + jugglingdb-sqlite3 Anatoliy Chakkaev Build Status @@ -118,7 +118,7 @@ check following list of available adapters If you want to create your own jugglingdb adapter, you should publish your adapter package with name `jugglingdb-ADAPTERNAME`. Creating adapter is simple, -check [jugglingdb-redis](/1602/jugglingdb-redis) for example. JugglingDB core +check [jugglingdb-redis](https://github.com/1602/jugglingdb-redis) for example. JugglingDB core exports common tests each adapter should pass, you could create your adapter in TDD style, check that adapter pass all tests defined in `test/common_test.js`. diff --git a/test/common_test.js b/test/common_test.js index f9f1a84b..70250f06 100644 --- a/test/common_test.js +++ b/test/common_test.js @@ -531,7 +531,6 @@ function testOrm(schema) { test.ok(u.posts.create, 'Method defined: posts.create'); u.posts.create(function (err, post) { if (err) return console.log(err); - // test.ok(post.author(), u.id); u.posts(function (err, posts) { test.equal(posts.pop().id.toString(), post.id.toString()); test.done();