|
|
@@ -1,5 +1,7 @@ |
|
|
## Running the mustache.js Test Suite |
|
|
## Running the mustache.js Test Suite |
|
|
|
|
|
|
|
|
|
|
|
Notice: the tests are only expected to run on unixoid systems. |
|
|
|
|
|
|
|
|
The mustache.js test suite uses the [RSpec](http://rspec.info/) testing |
|
|
The mustache.js test suite uses the [RSpec](http://rspec.info/) testing |
|
|
framework. In order to run the tests you'll need to install [Ruby](http://ruby-lang.org/) |
|
|
framework. In order to run the tests you'll need to install [Ruby](http://ruby-lang.org/) |
|
|
as well as the `rake`, `rspec` (>=2), and `json` [RubyGems](http://rubygems.org/). |
|
|
as well as the `rake`, `rspec` (>=2), and `json` [RubyGems](http://rubygems.org/). |
|
|
@@ -34,6 +36,17 @@ Install the required gems: |
|
|
|
|
|
|
|
|
That's it! |
|
|
That's it! |
|
|
|
|
|
|
|
|
|
|
|
### How to install node.js from source |
|
|
|
|
|
|
|
|
|
|
|
$ git clone https://github.com/joyent/node.git |
|
|
|
|
|
$ cd node |
|
|
|
|
|
$ # select the version to install, master is unstable; |
|
|
|
|
|
$ # latest stable version is advertised on http://nodejs.org |
|
|
|
|
|
$ git checkout v0.6.11 |
|
|
|
|
|
$ ./configure |
|
|
|
|
|
$ make |
|
|
|
|
|
$ sudo make install |
|
|
|
|
|
|
|
|
### How to run the tests |
|
|
### How to run the tests |
|
|
|
|
|
|
|
|
The mustache.js test suite currently uses 4 different JavaScript runtime engines |
|
|
The mustache.js test suite currently uses 4 different JavaScript runtime engines |
|
|
|