Slide 28
Slide 28 text
http://www.tablexi.com ⦿ http://www.noelrappin.com/mstwjs ⦿ http://www.noelrappin.com/trdd
it "extracts items from the initial page load", ->
expect(_.pluck(window.items[1], 'value')).toEqual(["1", "2"])
expect(_.pluck(window.items[2], 'value')).toEqual(["3"])
it "removes the original options after extracting", ->
expect($("#item_list option").length).toEqual(0)
it "adds the proper items on change", ->
$("#order_category_id").val("1")
$("#order_category_id").change()
expect(_.pluck($("#item_list option"), 'value')).toEqual(["1", "2"])