diff options
author | Ryan <ry@tinyclouds.org> | 2009-06-22 13:51:47 +0200 |
---|---|---|
committer | Ryan <ry@tinyclouds.org> | 2009-06-22 14:08:42 +0200 |
commit | 3fed1a095434877f6abe946ff6d788410b1dc66b (patch) | |
tree | 4d4b32f9a293a5d1871d7068a87aec31be01eee6 /test/fixtures/a.js | |
parent | dce072a67e0f83e6ef45c5624e7a4410c8f796fb (diff) | |
download | node-new-3fed1a095434877f6abe946ff6d788410b1dc66b.tar.gz |
Use v8's test runner
Diffstat (limited to 'test/fixtures/a.js')
-rw-r--r-- | test/fixtures/a.js | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/test/fixtures/a.js b/test/fixtures/a.js deleted file mode 100644 index 2d23232805..0000000000 --- a/test/fixtures/a.js +++ /dev/null @@ -1,18 +0,0 @@ -var c = require("b/c.js"); -var string = "A"; - -exports.A = function () { - return string; -}; - -exports.C = function () { - return c.C(); -}; - -exports.D = function () { - return c.D(); -}; - -function onExit () { - string = "A done"; -} |