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.
19 lines
358 B
19 lines
358 B
12 years ago
|
var test = require('tap').test
|
||
|
var once = require('../once.js')
|
||
|
|
||
|
test('once', function (t) {
|
||
|
var f = 0
|
||
|
var foo = once(function (g) {
|
||
|
t.equal(f, 0)
|
||
|
f ++
|
||
|
return f + g + this
|
||
|
})
|
||
|
for (var i = 0; i < 1E3; i++) {
|
||
|
t.same(f, i === 0 ? 0 : 1)
|
||
|
var g = foo.call(1, 1)
|
||
|
t.same(g, i === 0 ? 3 : undefined)
|
||
|
t.same(f, 1)
|
||
|
}
|
||
|
t.end()
|
||
|
})
|