私は CoffeeScript と Jasmine の初心者です。以下のような単純なクラスをテストしようとしました。
class Counter
count: 0
constructor: ->
@count = 0
increment: ->
@count++
decrement: ->
@count--
reset: ->
@count = 0
root = exports ? this
root.Counter = Counter
次に、以下のようにテストコードを書きました。
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)
)
)
)
2 番目のテストは常に失敗し、メッセージは次のとおりです。
Expected 0 to be 1.
ご親切にありがとうございました。