1.1.15 • Published 9 months ago

fs-stats-spys v1.1.15

Weekly downloads
2
License
MIT
Repository
github
Last release
9 months ago

fs-stats-spys

Helper for using sinon spys with fs.Stats.

var assert = require('assert');
var statsSpys = require('fs-stats-spys');
var Iterator = require('fs-iterator');

var spys = statsSpys();

var iterator = new Iterator(TEST_DIR);
iterator.forEach(
  function (entry) {
    spys(entry.stats);
  },
  function (err) {
      assert.equal(spys.dir.callCount, 5);
    assert.equal(spys.file.callCount, 7);
    assert.equal(spys.link.callCount, 0);
    done();
  }
);
});
1.1.15

9 months ago

1.1.14

9 months ago

1.1.13

9 months ago

1.1.12

9 months ago

1.1.11

9 months ago

1.1.9

9 months ago

1.1.8

9 months ago

1.1.10

9 months ago

1.1.1

10 months ago

1.1.7

10 months ago

1.1.6

10 months ago

1.1.5

10 months ago

1.1.4

10 months ago

1.1.3

10 months ago

1.1.2

10 months ago

1.1.0

11 months ago

1.0.2

3 years ago

1.0.1

5 years ago

1.0.0

5 years ago