Skip to content

Manfred/moksi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Moksi

Moksi is an all-in-one JavaScript testing framework with a lot of salt, but easy on the pepper. With Moksi you write tests which are terse and readable.

A taste

var Person = Class.create({
  initialize: function(name, mood) {
    this._name = name;
  },
  
  name: function() {
    return this._name;
  },

  toBlurb: function() {
    return this.name() + ' is a ' + mood + ' person.';
  }
});

Moksi.describe('Person', {
  setup: function() {
    this.suite.person = new Person('Alice', 'happy');
  },

  'describes itself in a blurb': function() {
    expects(this.suite.person.toBlurb()).equals('Alice is a happy person.');
  },
  
  'includes the name in the blurb': function() {
    expects(this.suite.person).receives('name', { times: 1 });
    this.suite.person.toBlurb();
  }
});

Copyright © 2009, Manfred Stienstra manfred@fngtps.com

About

Moksi is an all-in-one JavaScript testing framework with a lot of salt, but easy on the pepper.

Resources

License

Stars

Watchers

Forks

Packages

No packages published