Skip to content

Commit

Permalink
touchdown. was quite refreshing, i think i did follow 'jasmines way' …
Browse files Browse the repository at this point in the history
…to describe c/s. nonetheless don't like it that much. would prefer to describe the context to it's full extend and leave the it's with the single expect. jasmine api feels good, the spy-thing is refreshingly easy. guess it was ok for a js-noobie. ;). btw, touchdown blue with reformatting.
  • Loading branch information
ilkerde committed Apr 8, 2011
1 parent 3a4850e commit 9e19252
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion KataFizzBuzz.Jasmine/src/FizzBuzz.js
Expand Up @@ -14,7 +14,8 @@ var FizzBuzz = {

translateRange: function(from, to) {
var translations = [];
for(var i=from; i<to; i++)

for(var i = from; i < to; i++)
translations[i] = this.translate(i);

return translations;
Expand Down

0 comments on commit 9e19252

Please sign in to comment.