mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
361 B
15 lines
361 B
16 years ago
|
#!/usr/bin/env ruby
|
||
|
require File.dirname(__FILE__) + "/common"
|
||
|
|
||
|
a = Time.now
|
||
|
out = `#{$node} #{$tf.path}`
|
||
|
b = Time.now
|
||
|
assert_equal("hello\nworld\n", out)
|
||
|
assert_less_than(b - a, 1) # startup time
|
||
|
|
||
|
__END__
|
||
|
log("hello");
|
||
|
timeout1 = setTimeout(function () { log("world"); }, 500);
|
||
|
timeout2 = setTimeout(function () { log("ryah"); }, 5000);
|
||
|
clearTimeout(timeout2)
|