Sha256: 89e86d7fd150c467b0fec6a3670ae0027e19fc1d20ce22563a2ad9d6985c1045
Contents?: true
Size: 656 Bytes
Versions: 18
Compression:
Stored size: 656 Bytes
Contents
fixture.preload("fixture.html", "fixture.json") # make the actual requests for the files describe "Using fixtures", -> fixture.set("<h2>Another Title</h2>") # create some markup manually (will be in a beforeEach) beforeEach -> @fixtures = fixture.load("fixture.html", "fixture.json", true) # append these fixtures it "loads fixtures", -> expect(document.getElementById("fixture_view").tagName).to.be("DIV") expect(@fixtures[0]).to.be(fixture.el) # the element is available as a return value and through fixture.el expect(@fixtures[1]).to.eql(fixture.json[0]) # the json for json fixtures is returned, and available in fixture.json
Version data entries
18 entries across 18 versions & 2 rubygems