Socket
Book a DemoInstallSign in
Socket

fixr

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fixr

Create data fixtures for testing projects

latest
Source
npmnpm
Version
0.0.8
Version published
Maintainers
1
Created
Source

Fixr

build status

Create data fixtures for testing Node.js projects.

Currently only works with Postgres, more engines can be easily added for other SQL servers.

This project is very new and thus the API is subject to incompatible changes.

Example

fixtures/users.json

{
  "users": [
    {
      "email": "user1@example.com",
      "password": "CFDD77B787114C"
    },
    {
      "email": "user2@example.com",
      "password": "3C404BD9DA9523"
    }
  ]
}

users_test.js

var Fixr = require('fixr');
var assert = require('assert');

var engineConfig = {
  host: 'localhost',
  port: 5432,
  database: 'mydb_test',
  user: 'postgres',
  password: ''
};

var fixr = new Fixr.Fixr(engineConfig);
fixr.fix('./fixtures/users', function(err) {
  assert.ifError(err);
  console.log('fixture data loaded!');
  /*
   * do some test that requires user data loaded by the fixture
   */
});

Install

npm install fixr

Mentions

  • SQL statement generation provided by sql

Keywords

fixture

FAQs

Package last updated on 07 Oct 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts