Removed references to namespaces

This commit is contained in:
Patrick Steele-Idem 2014-05-06 10:51:11 -06:00
parent 16d34cfb65
commit 5582e11343
2 changed files with 8 additions and 8 deletions

View File

@ -166,7 +166,7 @@ describe('raptor-templates/rhtml' , function() {
testRender("test-project/rhtml-templates/choose-when.rhtml", {}, done);
});
it("should not allow <c:otherwise> to be before a <c:when> tag", function(done) {
it("should not allow <c-otherwise> to be before a <c-when> tag", function(done) {
var e;
@ -185,11 +185,11 @@ describe('raptor-templates/rhtml' , function() {
done();
});
it("should allow for <c:def> functions", function(done) {
it("should allow for <c-def> functions", function(done) {
testRender("test-project/rhtml-templates/def.rhtml", {}, done);
});
it("should allow for <c:with> functions", function(done) {
it("should allow for <c-with> functions", function(done) {
testRender("test-project/rhtml-templates/with.rhtml", {}, done);
});
@ -217,7 +217,7 @@ describe('raptor-templates/rhtml' , function() {
testRender("test-project/rhtml-templates/include.rhtml", {}, done);
});
it("should allow for <c:invoke function... />", function(done) {
it("should allow for <c-invoke function... />", function(done) {
testRender("test-project/rhtml-templates/invoke.rhtml", {}, done);
});

View File

@ -155,7 +155,7 @@ describe('raptor-templates/rxml' , function() {
testRender("test-project/rxml-templates/choose-when.rxml", {}, done);
});
it("should not allow <c:otherwise> to be before a <c:when> tag", function(done) {
it("should not allow <c-otherwise> to be before a <c-when> tag", function(done) {
var e;
@ -174,11 +174,11 @@ describe('raptor-templates/rxml' , function() {
done();
});
it("should allow for <c:def> functions", function(done) {
it("should allow for <c-def> functions", function(done) {
testRender("test-project/rxml-templates/def.rxml", {}, done);
});
it("should allow for <c:with> functions", function(done) {
it("should allow for <c-with> functions", function(done) {
testRender("test-project/rxml-templates/with.rxml", {}, done);
});
@ -206,7 +206,7 @@ describe('raptor-templates/rxml' , function() {
testRender("test-project/rxml-templates/include.rxml", {}, done);
});
it("should allow for <c:invoke function... />", function(done) {
it("should allow for <c-invoke function... />", function(done) {
testRender("test-project/rxml-templates/invoke.rxml", {}, done);
});