0.1.11 • Published 9 years ago

jasmine-set v0.1.11

Weekly downloads
34
License
-
Repository
github
Last release
9 years ago

Build Status

jasmine-set brings rspec's let syntax to the Jasmine behavior-driven development framework for testing JavaScript code. The set global function is provided, which allows the spec writer to define lazy global accessors that can be refined in nested specs. To achieve this behavior, the Suite.prototype.finish function from Jasmine is wrapped.

Why not let?

In Ecmascript, let is a reserved word that allows for block-level scoping (as opposed to var, which is functionally-scoped).

Sample Usage

describe 'House', ->
  set 'opts',  -> {}
  set 'house', -> new House(opts)

  it 'has a door', -> expect(house).toHaveADoor()

  describe 'with no doors', ->
    set 'opts', -> { doors: 0 }

    it 'does not have a door', -> expect(house).not.toHaveADoor()

Dependencies

  • underscore (~1.6)
  • node >= 0.8

Building from source

$ npm i
$ grunt build

Running specs

$ grunt test

License

MIT

Copyright

Rapid7 2014

0.1.11

9 years ago

0.1.10

9 years ago

0.1.9

9 years ago

0.1.8

9 years ago

0.1.7

10 years ago

0.1.6

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago