You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2008/01/28 16:59:44 UTC

svn commit: r615920 - /incubator/sling/trunk/launchpad/launchpad-webapp/src/test/java/org/apache/sling/launchpad/webapp/integrationtest/PropertyRenderingTest.java

Author: bdelacretaz
Date: Mon Jan 28 07:59:42 2008
New Revision: 615920

URL: http://svn.apache.org/viewvc?rev=615920&view=rev
Log:
SLING-149 - PropertyRenderingTest works now, reactivate

Modified:
    incubator/sling/trunk/launchpad/launchpad-webapp/src/test/java/org/apache/sling/launchpad/webapp/integrationtest/PropertyRenderingTest.java

Modified: incubator/sling/trunk/launchpad/launchpad-webapp/src/test/java/org/apache/sling/launchpad/webapp/integrationtest/PropertyRenderingTest.java
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/launchpad/launchpad-webapp/src/test/java/org/apache/sling/launchpad/webapp/integrationtest/PropertyRenderingTest.java?rev=615920&r1=615919&r2=615920&view=diff
==============================================================================
--- incubator/sling/trunk/launchpad/launchpad-webapp/src/test/java/org/apache/sling/launchpad/webapp/integrationtest/PropertyRenderingTest.java (original)
+++ incubator/sling/trunk/launchpad/launchpad-webapp/src/test/java/org/apache/sling/launchpad/webapp/integrationtest/PropertyRenderingTest.java Mon Jan 28 07:59:42 2008
@@ -50,27 +50,27 @@
         assertJavascript(testText, json, "out.println(data.text)");
     }
     
-    public void TODO_FAILS_testTextJson() throws IOException {
+    public void testTextJson() throws IOException {
         final String json = getContent(displayUrl + "/text.json", CONTENT_TYPE_JSON);
         assertEquals("{\"text\":\"" + testText + "\"}",json);
     }
 
-    public void TODO_FAILS_testTextHtml() throws IOException {
+    public void testTextHtml() throws IOException {
         final String data = getContent(displayUrl + "/text.html", CONTENT_TYPE_HTML);
         assertEquals(testText, data);
     }
     
-    public void TODO_FAILS_testTextTxt() throws IOException {
+    public void testTextTxt() throws IOException {
         final String data = getContent(displayUrl + "/text.txt", CONTENT_TYPE_PLAIN);
         assertEquals(testText, data);
     }
     
-    public void TODO_FAILS_testTextNoExt() throws IOException {
+    public void testTextNoExt() throws IOException {
         final String data = getContent(displayUrl + "/text", CONTENT_TYPE_PLAIN);
         assertEquals(testText, data);
     }
     
-    public void TODO_FAILS_testResourceTypeNoExt() throws IOException {
+    public void testResourceTypeNoExt() throws IOException {
         final String data = getContent(displayUrl + "/sling:resourceType", CONTENT_TYPE_PLAIN);
         assertEquals(slingResourceType, data);
     }