├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── mongoose_fixtures.js ├── package.json └── tests ├── fixtures └── countries.coffee ├── models └── country.coffee └── mongoose_fixtures.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | pids 3 | logs 4 | results 5 | 6 | node_modules 7 | npm-debug.log 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powmedia/mongoose-fixtures/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powmedia/mongoose-fixtures/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powmedia/mongoose-fixtures/HEAD/README.md -------------------------------------------------------------------------------- /mongoose_fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powmedia/mongoose-fixtures/HEAD/mongoose_fixtures.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powmedia/mongoose-fixtures/HEAD/package.json -------------------------------------------------------------------------------- /tests/fixtures/countries.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powmedia/mongoose-fixtures/HEAD/tests/fixtures/countries.coffee -------------------------------------------------------------------------------- /tests/models/country.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powmedia/mongoose-fixtures/HEAD/tests/models/country.coffee -------------------------------------------------------------------------------- /tests/mongoose_fixtures.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powmedia/mongoose-fixtures/HEAD/tests/mongoose_fixtures.test.js --------------------------------------------------------------------------------