I am beginner of CoffeeScript and Jasmine. At first, I tried to pass test with below code:
class Counter
count: 0
constructor: ->
@count = 0
increment: ->
@count++
decrement: ->
@count--
reset: ->
@count = 0
root = exports ? this
root.Counter = Counter
The jasmine test code is below:
describe("Counter", ->
counter = new Counter
it("shold have 0 as a count variable at first", ->
expect(counter.count).toBe(0)
)
describe('increment()', ->
it("should count up from 0 to 1", ->
expect(counter.increment()).toBe(1)
)
)
)
Then kind person told me that the code should be as below:
class Counter
count: 0
constructor: ->
@count = 0
increment: ->
++@count
decrement: ->
--@count
reset: ->
@count = 0
root = exports ? this
root.Counter = Counter
Yes, this code passed the test. But I have a question that the former code is more natural than latter code. I have no idea how to certain this question. Thank you for your help.
counter = new Countershould be wrapped in abeforeEach. – loganfsmyth Sep 27 '12 at 6:16