Sha256: 4dc665007a980c825f9dd847f53dbcd86f447b785317f642db20a722afef4916

Contents?: true

Size: 1.36 KB

Versions: 11

Compression:

Stored size: 1.36 KB

Contents

// ==========================================================================
// Project:   SproutCore - JavaScript Application Framework
// Copyright: ©2006-2009 Sprout Systems, Inc. and contributors.
//            Portions ©2008-2009 Apple, Inc. All rights reserved.
// License:   Licened under MIT license (see license.js)
// ==========================================================================

/*global module test equals context */

var context = null;

module("SC.RenderContext#tag", {
  setup: function() {
    context = SC.RenderContext() ;
  }
});

test("should emit a self closing tag.  like calling begin().end()", function() {
  context.tag("input");
  equals(context.get(1), "<input />");
});

test("should respect passed opts when emitting", function() {
  context.tag("foo") ;
  equals(context.length, 2);
  equals(context.get(1), "<foo />");
});

test("should NOT emit self closing tag if tag is script", function() {
  context.tag("script");
  equals(context.get(1), '<script>');
  equals(context.get(2), '<'+'/script>');
});

test("should NOT emit self closing tag if tag is div", function() {
  context.tag("div");
  equals(context.get(1), '<div>');
  equals(context.get(2), '<'+'/div>');
});

test("should NOT emit self closing tag if no tag is passed", function() {
  context.tag();
  equals(context.get(1), '<div>');
  equals(context.get(2), '<'+'/div>');
});

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
sproutit-sproutcore-1.0.0.20090408130025 frameworks/sproutcore/frameworks/foundation/tests/system/render_context/tag.js
sproutit-sproutcore-1.0.0.20090416161445 frameworks/sproutcore/frameworks/foundation/tests/system/render_context/tag.js
sproutit-sproutcore-1.0.0.20090720093355 frameworks/sproutcore/frameworks/foundation/tests/system/render_context/tag.js
sproutit-sproutcore-1.0.0.20090720202429 frameworks/sproutcore/frameworks/foundation/tests/system/render_context/tag.js
sproutit-sproutcore-1.0.0.20090721125122 frameworks/sproutcore/frameworks/foundation/tests/system/render_context/tag.js
sproutit-sproutcore-1.0.126 frameworks/sproutcore/frameworks/foundation/tests/system/render_context/tag.js
sproutit-sproutcore-1.0.20090721145251 frameworks/sproutcore/frameworks/foundation/tests/system/render_context/tag.js
sproutit-sproutcore-1.0.20090721145280 frameworks/sproutcore/frameworks/foundation/tests/system/render_context/tag.js
sproutit-sproutcore-1.0.20090721145281 frameworks/sproutcore/frameworks/foundation/tests/system/render_context/tag.js
sproutit-sproutcore-1.0.20090721145282 frameworks/sproutcore/frameworks/foundation/tests/system/render_context/tag.js
sproutit-sproutcore-1.0.203 frameworks/sproutcore/frameworks/foundation/tests/system/render_context/tag.js