mirror of https://github.com/lukechilds/node.git
Ryan Dahl
15 years ago
9 changed files with 42 additions and 25 deletions
@ -0,0 +1,11 @@ |
|||
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); |
Loading…
Reference in new issue