Sha256: 17b5501d5c0f48211e9936fbc9cb0473dced7c2076b35c12f1751f934fff3302

Contents?: true

Size: 763 Bytes

Versions: 10

Compression:

Stored size: 763 Bytes

Contents

// require_relative('../spec_helper.js')

// This is just some example Jasmine spec code to test that everything would
// work assuming that I can find a way to get the spec code loaded in here
// like this.
describe("Hoopty", function() {
  it("exists", function() {
    var f = new Hoopty();
    expect(f).not.toBe(undefined);
  });

  it("handles pending", function() {
  });

  it("handles another pending", function() {
  });

  describe(".hello", function() {
    it("says hello there", function() {
      var f = new Hoopty();
      expect(f.hello()).toBe("Hello There aeuaeuo");
    });
  });

  describe(".goodbye", function() {
    it("says goodbye", function() {
      var f = new Hoopty();
      expect(f.goodbye()).toBe("goodbye");
    });
  });
});

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
snapdragon-3.0.0 example/spec/hoopty_spec.js
snapdragon-2.0.0 example/spec/hoopty_spec.js
snapdragon-1.0.0 example/spec/hoopty_spec.js
snapdragon-0.2.0 example/spec/hoopty_spec.js
snapdragon-0.1.12 example/spec/hoopty_spec.js
snapdragon-0.1.11 example/spec/hoopty_spec.js
snapdragon-0.1.10 example/spec/hoopty_spec.js
snapdragon-0.1.9 example/spec/hoopty_spec.js
snapdragon-0.1.8 example/spec/hoopty_spec.js
snapdragon-0.1.7 example/spec/hoopty_spec.js