Sha256: 0293e8f3eda4cb1528feb9e2d8385c99e59b41e5a3937c4ac18b6e0141d42536
Contents?: true
Size: 1.67 KB
Versions: 2
Compression:
Stored size: 1.67 KB
Contents
require '/assets/mercury.js' describe "Mercury.Palette", -> template 'mercury/palette.html' beforeEach -> $.fx.off = true afterEach -> @palette = null delete(@palette) describe "#build", -> it "builds an element", -> @palette = new Mercury.Palette('/evergreen/responses/blank.html', 'foo', {appendTo: '#test', for: $('#button')}) html = $('<div>').html(@palette.element).html() expect(html).toContain('class="mercury-palette mercury-foo-palette loading"') expect(html).toContain('style="display:none"') it "appends to any element", -> @palette = new Mercury.Palette('/evergreen/responses/blank.html', 'foo', {appendTo: '#palette_container', for: $('#button')}) expect($('#palette_container .mercury-palette').length).toEqual(1) describe "observed events", -> beforeEach -> @palette = new Mercury.Palette('/evergreen/responses/blank.html', 'foo', {appendTo: '#test', for: $('#button')}) it "hides", -> @palette.element.css({display: 'block'}) Mercury.trigger('hide:dialogs') expect(@palette.element.css('display')).toEqual('none') it "doesn't hide if it's the same dialog", -> @palette.element.css({display: 'block'}) Mercury.trigger('hide:dialogs', @palette) expect(@palette.element.css('display')).toEqual('block') describe "#position", -> beforeEach -> @palette = new Mercury.Palette('/evergreen/responses/blank.html', 'foo', {appendTo: '#test', for: $('#button')}) it "positions based on it's button", -> @palette.element.css({display: 'block'}) @palette.position(true) expect(@palette.element.offset()).toEqual({top: 62, left: 42})
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mercury-rails-0.2.3 | spec/javascripts/mercury/palette_spec.js.coffee |
mercury-rails-0.2.0 | spec/javascripts/mercury/palette_spec.js.coffee |