You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by nb...@apache.org on 2008/08/21 01:45:42 UTC

svn commit: r687509 - /velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity589TestCase.java

Author: nbubna
Date: Wed Aug 20 16:45:42 2008
New Revision: 687509

URL: http://svn.apache.org/viewvc?rev=687509&view=rev
Log:
VELOCITY-589 regression test to ensure it doesn't re-occur

Added:
    velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity589TestCase.java   (with props)

Added: velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity589TestCase.java
URL: http://svn.apache.org/viewvc/velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity589TestCase.java?rev=687509&view=auto
==============================================================================
--- velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity589TestCase.java (added)
+++ velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity589TestCase.java Wed Aug 20 16:45:42 2008
@@ -0,0 +1,40 @@
+package org.apache.velocity.test.issues;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.    
+ */
+
+import org.apache.velocity.test.BaseEvalTestCase;
+
+/**
+ * This class tests VELOCITY-589.
+ */
+public class Velocity589TestCase extends BaseEvalTestCase
+{
+    public Velocity589TestCase(String name)
+    {
+       super(name);
+    }
+
+    public void testIt()
+    {
+        context.put("id", "test");
+        assertEvalEquals("#test_bg", "#${id}_bg");
+    }
+
+}

Propchange: velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity589TestCase.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity589TestCase.java
------------------------------------------------------------------------------
    svn:executable = *

Propchange: velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity589TestCase.java
------------------------------------------------------------------------------
    svn:keywords = Revision

Propchange: velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity589TestCase.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain