summaryrefslogtreecommitdiff
path: root/test/mjsunit/test-sys.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/mjsunit/test-sys.js')
-rw-r--r--test/mjsunit/test-sys.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/mjsunit/test-sys.js b/test/mjsunit/test-sys.js
index 6ba2157e8e..648452b0da 100644
--- a/test/mjsunit/test-sys.js
+++ b/test/mjsunit/test-sys.js
@@ -10,6 +10,8 @@ assert.equal("[Function]", inspect(function() {}));
assert.equal('undefined', inspect(undefined));
assert.equal('null', inspect(null));
assert.equal('/foo(bar\\n)?/gi', inspect(/foo(bar\n)?/gi));
+assert.equal('Sun, 14 Feb 2010 11:48:40 GMT',
+ inspect(new Date("Sun, 14 Feb 2010 11:48:40 GMT")));
assert.equal("\"\\n\\u0001\"", inspect("\n\u0001"));
@@ -79,3 +81,11 @@ assert.equal(
"{ /123/gi\n \"aprop\": 42\n}",
inspect(value)
);
+
+// Dates with properties
+value = new Date("Sun, 14 Feb 2010 11:48:40 GMT");
+value.aprop = 42;
+assert.equal(
+ "{ Sun, 14 Feb 2010 11:48:40 GMT\n \"aprop\": 42\n}",
+ inspect(value)
+);