Sha256: fc3e23380da28ff63532238e6af39c127f0f9d99bb6254af4a694631bb400f7b
Contents?: true
Size: 585 Bytes
Versions: 10
Compression:
Stored size: 585 Bytes
Contents
#= require jquery describe "the #konacha element", -> it "can have content added in one test...", -> $('#konacha').append('<h1 id="added">New Stuff</h1>') $('#konacha h1#added').length.should.equal(1) it "... that is removed before the next starts", -> $('#konacha h1#added').length.should.equal(0) it "can have an attribute added in one test...", -> $('#konacha').addClass('test') it "... that is removed before the next starts", -> $('#konacha').hasClass('test').should.be.false; it "is visible", -> $('#konacha').is(':visible').should.be.true
Version data entries
10 entries across 10 versions & 1 rubygems