You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2011/04/01 01:16:06 UTC

svn commit: r1087495 - in /tapestry/tapestry5/trunk/tapestry-yuicompressor/src/test/groovy: ./ org/ org/apache/ org/apache/tapestry5/ org/apache/tapestry5/yuicompressor/ org/apache/tapestry5/yuicompressor/itest/

Author: hlship
Date: Thu Mar 31 23:16:06 2011
New Revision: 1087495

URL: http://svn.apache.org/viewvc?rev=1087495&view=rev
Log:
TAP5-73: Add basic tests to demonstrate compression of JavaScript stacks and individual JavaScript files

Added:
    tapestry/tapestry5/trunk/tapestry-yuicompressor/src/test/groovy/
    tapestry/tapestry5/trunk/tapestry-yuicompressor/src/test/groovy/org/
    tapestry/tapestry5/trunk/tapestry-yuicompressor/src/test/groovy/org/apache/
    tapestry/tapestry5/trunk/tapestry-yuicompressor/src/test/groovy/org/apache/tapestry5/
    tapestry/tapestry5/trunk/tapestry-yuicompressor/src/test/groovy/org/apache/tapestry5/yuicompressor/
    tapestry/tapestry5/trunk/tapestry-yuicompressor/src/test/groovy/org/apache/tapestry5/yuicompressor/itest/
    tapestry/tapestry5/trunk/tapestry-yuicompressor/src/test/groovy/org/apache/tapestry5/yuicompressor/itest/YUICompressorIntegrationTests.groovy

Added: tapestry/tapestry5/trunk/tapestry-yuicompressor/src/test/groovy/org/apache/tapestry5/yuicompressor/itest/YUICompressorIntegrationTests.groovy
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-yuicompressor/src/test/groovy/org/apache/tapestry5/yuicompressor/itest/YUICompressorIntegrationTests.groovy?rev=1087495&view=auto
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-yuicompressor/src/test/groovy/org/apache/tapestry5/yuicompressor/itest/YUICompressorIntegrationTests.groovy (added)
+++ tapestry/tapestry5/trunk/tapestry-yuicompressor/src/test/groovy/org/apache/tapestry5/yuicompressor/itest/YUICompressorIntegrationTests.groovy Thu Mar 31 23:16:06 2011
@@ -0,0 +1,37 @@
+// Copyright 2011 The Apache Software Foundation
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package org.apache.tapestry5.yuicompressor.itest
+
+import org.apache.tapestry5.test.SeleniumTestCase
+import org.testng.annotations.Test;
+
+class YUICompressorIntegrationTests extends SeleniumTestCase
+{
+    @Test
+    void basic_functionality() {
+
+        openBaseURL()
+
+        addSelection "languages-avail", "label=Clojure"
+        click "languages-select"
+
+        addSelection "languages-avail", "label=Java"
+        click "languages-select"
+        
+        clickAndWait SUBMIT
+
+        assertText "selected", "CLOJURE, JAVA"
+    }
+}