Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 765 Bytes

README.md

File metadata and controls

23 lines (13 loc) · 765 Bytes

Backbone Koans

A set of jasmine powered koans for learning Backbone.js.

The koans verify behavior of a Todo list app, a modified version of the original Todos app created by Jérôme Gravel-Niquet.

How to Run

cp -R js/koans koans

This gets you a fresh set of failing specs to start with.

Open your favorite browser, and load the specrunner.html file. You should see many failing specs.

If you have python on your machine, here's an easy way to do that:

python -m SimpleHTTPServer
http://localhost:8000/

Work your way through the jasmine specs in the koans/ directory, and when you finish you should have a better understanding of how to create and test a Backbone app.