Commit a085008558409958c185a61746d361814e17209d

Authored by Cyril Mougel
2 parents fe3d77ad be316d08
Exists in master and in 1 other branch production

Merge pull request #494 from iFixit/docs-filename-typo

Fix docs filename typo.
docs/DEVELOPER-ADVANCED.md 0 → 100644
... ... @@ -0,0 +1,22 @@
  1 +# Some Tips to help you when you develop on Errbit
  2 +
  3 +## Running spec on multi-threaded mode
  4 +
  5 +Running the complete test suite can be really long. You can running it
  6 +on multi-fork system with the wonderfull gem of
  7 +[@tmm1](http://github.com/tmm1), [test-queue](http://github.com/tmm1/test-queue)
  8 +
  9 +If you want do it, you need install in first the gem 'test-queue'
  10 +
  11 +```
  12 +gem install test-queue
  13 +```
  14 +
  15 +After you just need launch the script with adapting runner of mongoid.
  16 +
  17 +```
  18 +./script/rspec-queue-mongoid.rb spec
  19 +```
  20 +
  21 +In my case, the complete test suite down to 2min after a 16min long
  22 +before.
... ...
docs/DEVELOPPER-ADVANCED.md
... ... @@ -1,22 +0,0 @@
1   -# Some Tips to help you when you develop on Errbit
2   -
3   -## Running spec on multi-threaded mode
4   -
5   -Running the complete test suite can be really long. You can running it
6   -on multi-fork system with the wonderfull gem of
7   -[@tmm1](http://github.com/tmm1), [test-queue](http://github.com/tmm1/test-queue)
8   -
9   -If you want do it, you need install in first the gem 'test-queue'
10   -
11   -```
12   -gem install test-queue
13   -```
14   -
15   -After you just need launch the script with adapting runner of mongoid.
16   -
17   -```
18   -./script/rspec-queue-mongoid.rb spec
19   -```
20   -
21   -In my case, the complete test suite down to 2min after a 16min long
22   -before.