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

Version Path
teaspoon-0.9.1 spec/javascripts/teaspoon/mocha/fixture_mspec.coffee
teaspoon-0.9.0 spec/javascripts/teaspoon/mocha/fixture_mspec.coffee
teaspoon-0.8.0 spec/javascripts/teaspoon/mocha/fixture_mspec.coffee
teaspoon-0.7.9 spec/javascripts/teaspoon/mocha/fixture_mspec.coffee
teaspoon-0.7.8 spec/javascripts/teaspoon/mocha/fixture_mspec.coffee
teaspoon-0.7.7 spec/javascripts/teaspoon/mocha/fixture_mspec.coffee
teaspoon-0.7.6 spec/javascripts/teaspoon/mocha/fixture_mspec.coffee
teaspoon-0.7.5 spec/javascripts/teaspoon/mocha/fixture_mspec.coffee
teaspoon-0.7.4 spec/javascripts/teaspoon/mocha/fixture_mspec.coffee
teabag-0.7.3 spec/javascripts/teabag/mocha/fixture_mspec.coffee
teabag-0.7.2 spec/javascripts/teabag/mocha/fixture_mspec.coffee
teabag-0.7.1 spec/javascripts/teabag/mocha/fixture_mspec.coffee
teabag-0.7.0 spec/javascripts/teabag/mocha/fixture_mspec.coffee
teabag-0.6.0 spec/javascripts/teabag/mocha/fixture_mspec.coffee
teabag-0.5.5 spec/javascripts/teabag/mocha/fixture_mspec.coffee
teabag-0.5.4 spec/javascripts/teabag/mocha/fixture_mspec.coffee
teabag-0.5.3 spec/javascripts/teabag/mocha/fixture_mspec.coffee
teabag-0.5.2 spec/javascripts/teabag/mocha/fixture_mspec.coffee