Sha256: f1e8deeeb7731fefef30b9baa8311891a2551c2b7506ab101237ea42f03b9cef

Contents?: true

Size: 911 Bytes

Versions: 5

Compression:

Stored size: 911 Bytes

Contents

describe "Teabag", ->

  describe "class level API", ->

    it "has the expected API", ->
      return unless Object.keys # can't test in ie
      keys = Object.keys(Teabag)
      # common
      expect(keys).toContain("defer")
      expect(keys).toContain("slow")
      expect(keys).toContain("root")
      expect(keys).toContain("finished")
      expect(keys).toContain("execute")
      expect(keys).toContain("version")
      # caching
      expect(keys).toContain("Date")
      expect(keys).toContain("location")


  describe ".execute", ->

    beforeEach ->
      Teabag.defer = false

    it "allows defering (thus not instantiating the runner)", ->
      Teabag.defer = true
      spy = spyOn(Teabag, "Runner")
      Teabag.execute()
      expect(spy).wasNotCalled()

    it "will execute if it should", ->
      spy = spyOn(Teabag, "Runner")
      Teabag.execute()
      expect(spy).toHaveBeenCalled()

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
teabag-0.7.3 spec/javascripts/teabag/base/teabag_spec.coffee
teabag-0.7.2 spec/javascripts/teabag/base/teabag_spec.coffee
teabag-0.7.1 spec/javascripts/teabag/base/teabag_spec.coffee
teabag-0.7.0 spec/javascripts/teabag/base/teabag_spec.coffee
teabag-0.6.0 spec/javascripts/teabag/base/teabag_spec.coffee