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.
12 lines
251 B
12 lines
251 B
15 years ago
|
require('../common');
|
||
|
|
||
|
path = require('path');
|
||
|
fs = require('fs');
|
||
|
fn = path.join(fixturesDir, 'elipses.txt');
|
||
|
|
||
|
var s = fs.readFileSync(fn, 'utf8');
|
||
|
for (var i = 0; i < s.length; i++) {
|
||
|
assert.equal("\u2026", s[i]);
|
||
|
}
|
||
|
assert.equal(10000, s.length);
|