Created
March 28, 2014 05:09
-
-
Save arcesino/9825796 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Chai assert extensions | |
### | |
Check an object is rendered. | |
Expects @_obj to be a jQuery object. | |
### | |
chai.Assertion.addProperty 'rendered', -> | |
selector = @_obj.selector | |
@assert @_obj.length > 0 | |
, "expected #{selector} is not rendered" | |
, "expected #{selector} is rendered" | |
### | |
Check an object has a certain id. | |
Expects @_obj to be a jQuery object. | |
### | |
chai.Assertion.addChainableMethod 'id', (id)-> | |
@assert @_obj.attr('id') is id | |
, "element has not id #{id}" | |
, "element has id #{id}" | |
### | |
Check an object has a certain class. | |
Expects @_obj to be a jQuery object. | |
### | |
chai.Assertion.addChainableMethod 'class', (clazz)-> | |
@assert @_obj.hasClass(clazz) | |
, "the element has not class #{clazz}" | |
, "the element has class #{clazz}" | |
### | |
Check an object has certain classes. | |
Expects @_obj to be a jQuery object. | |
### | |
chai.Assertion.addChainableMethod 'classes', (classes)-> | |
@assert (x for x in classes when @_obj.hasClass x).length is classes.length | |
, "the element has not classes #{classes}" | |
, "the element has classes #{classes}" | |
### | |
Check an object has certain text. | |
Expects @_obj to be a jQuery object. | |
### | |
chai.Assertion.addChainableMethod 'text', (text)-> | |
@assert @_obj.text() is text | |
, "the element has not text #{text}" | |
, "the element has text #{text}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment