Sha256: 585687e26379ab3edc3e114ba762a033e3b595824dc88f8180503a76c3f1c00b
Contents?: true
Size: 1.49 KB
Versions: 1
Compression:
Stored size: 1.49 KB
Contents
describe "Mercury.dialogHandlers.foreColor", -> beforeEach -> fixture.load('mercury/dialogs/forecolor.html') @dialog = {element: $(fixture.el), button: $('#button')} Mercury.dialogHandlers.foreColor.call(@dialog) describe "when a .picker or .last-picked element is clicked", -> it "sets the last picked color to whatever was selected", -> $('.last-picked').css({background: '#0000FF'}) jasmine.simulate.click($('#white').get(0)) expect($('.last-picked').css('backgroundColor')).toEqual('rgb(255, 255, 255)') jasmine.simulate.click($('#red').get(0)) expect($('.last-picked').css('backgroundColor')).toEqual('rgb(255, 0, 0)') it "sets the background color of the button", -> $('#button').css({background: '#0000FF'}) jasmine.simulate.click($('#white').get(0)) expect($('#button').css('backgroundColor')).toEqual('rgb(255, 255, 255)') jasmine.simulate.click($('#red').get(0)) expect($('#button').css('backgroundColor')).toEqual('rgb(255, 0, 0)') it "triggers an action", -> spy = spyOn(Mercury, 'trigger').andCallFake(=>) jasmine.simulate.click($('#white').get(0)) expect(spy.callCount).toEqual(1) expect(spy.argsForCall[0]).toEqual(['action', {action: 'foreColor', value: '#FFFFFF'}]) describe "when any other element is clicked", -> it "does nothing", -> spy = spyOn(Mercury, 'trigger').andCallFake(=>) jasmine.simulate.click($('#green').get(0)) expect(spy.callCount).toEqual(0)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
kiteditor-1.0.12 | spec/javascripts/mercury/dialogs/forecolor_spec.js.coffee |