summaryrefslogtreecommitdiff
path: root/test/fixtures/a.js
diff options
context:
space:
mode:
authorRyan <ry@tinyclouds.org>2009-06-22 13:51:47 +0200
committerRyan <ry@tinyclouds.org>2009-06-22 14:08:42 +0200
commit3fed1a095434877f6abe946ff6d788410b1dc66b (patch)
tree4d4b32f9a293a5d1871d7068a87aec31be01eee6 /test/fixtures/a.js
parentdce072a67e0f83e6ef45c5624e7a4410c8f796fb (diff)
downloadandroid-node-v8-3fed1a095434877f6abe946ff6d788410b1dc66b.tar.gz
android-node-v8-3fed1a095434877f6abe946ff6d788410b1dc66b.tar.bz2
android-node-v8-3fed1a095434877f6abe946ff6d788410b1dc66b.zip
Use v8's test runner
Diffstat (limited to 'test/fixtures/a.js')
-rw-r--r--test/fixtures/a.js18
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";
-}