Giter VIP home page Giter VIP logo

affix's Introduction

Affix - Binding made more fluent

Intro

A simple utility module to make binding more fluent, with some helpers for testing.

Why?

(1) It can be easy to miss a bind call:

function () {
    .... lots of code ....
}.bind(context);

(2) Given the typical fluent testing framework:

it(<descriptionStr>, <workFn>);

It can be useful to bind your workFn functions to your fixture data. Affix lets you use one fixture object using the descriptionStr as a cursor

Thus, without doing anything drastic to the test structure, you can wire fixtures at test definition time. It was originally used for keyhole refactoring of some large test files, thus it is super-simple and non-invasive.

Usage

var fixtures = {
    'should be the answer to everything': {
        inp: 40 + 2,
        out: 42
    }
};
var should =   require("should");
var affix  =   require("affix")(fixtures);

describe( 'The answer', function () {
    it( affix.set( 'should be the answer to everything'),
        affix.bind( function () {
            var inp = this.fixture.inp;
            var out = this.fixture.out;
            inp.should.be.exactly( out );
        })
    );
});

affix's People

Contributors

ashcoolman avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.