Sha256: b95f96da9ea0bcd8daf4c08f57d834d75ba16c7334a25b8595fc385f39e9f4a4
Contents?: true
Size: 658 Bytes
Versions: 27
Compression:
Stored size: 658 Bytes
Contents
#= require jquery describe "the body#konacha element", -> it "is empty", -> $('#konacha').html().should.equal '' 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 one 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 one starts", -> $('#konacha').hasClass('test').should.be.false it "is visible", -> $('#konacha').is(':visible').should.be.true
Version data entries
27 entries across 27 versions & 1 rubygems