Add a test for issue 132
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 39fb11c..5a5c5e1 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -7,6 +7,9 @@
 	</properties>

 	<body>

         <release version="1.10-SNAPSHOT" date="in Mercurial" description="Development">

+             <action dev="py4fun" type="add">

+                Added a test for issue 132 (2011-09-13)

+             </action>

              <action dev="py4fun" type="update">

                 Finish 1.9 release (2011-08-15)

              </action>

diff --git a/src/test/java/org/yaml/snakeyaml/issues/issue132/ScalarEventTagTest.java b/src/test/java/org/yaml/snakeyaml/issues/issue132/ScalarEventTagTest.java
new file mode 100644
index 0000000..69dfccf
--- /dev/null
+++ b/src/test/java/org/yaml/snakeyaml/issues/issue132/ScalarEventTagTest.java
@@ -0,0 +1,61 @@
+/**

+ * Copyright (c) 2008-2011, http://www.snakeyaml.org

+ *

+ * 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.yaml.snakeyaml.issues.issue132;

+

+import java.io.IOException;

+import java.io.StringReader;

+import java.util.ArrayList;

+import java.util.List;

+

+import junit.framework.TestCase;

+

+import org.yaml.snakeyaml.Yaml;

+import org.yaml.snakeyaml.events.Event;

+import org.yaml.snakeyaml.events.ScalarEvent;

+import org.yaml.snakeyaml.nodes.Node;

+

+/**

+ * to test http://code.google.com/p/snakeyaml/issues/detail?id=132

+ */

+public class ScalarEventTagTest extends TestCase {

+    public void testLoad() throws IOException {

+        Yaml yaml = new Yaml();

+        Iterable<Event> parsed = yaml.parse(new StringReader("5"));

+        List<Event> events = new ArrayList<Event>(5);

+        for (Event event : parsed) {

+            events.add(event);

+            // System.out.println(event);

+        }

+        String tag = ((ScalarEvent) events.get(2)).getTag();

+        assertNull("The tag should not be specified: " + tag, tag);

+    }

+

+    public void testDump() throws IOException {

+        Yaml yaml = new Yaml();

+        Node intNode = yaml.represent(7);

+        assertEquals("tag:yaml.org,2002:int", intNode.getTag().toString());

+        // System.out.println(intNode);

+        List<Event> intEvents = yaml.serialize(intNode);

+        String tag = ((ScalarEvent) intEvents.get(2)).getTag();

+        assertEquals("Without the tag emitter would not know how to emit '7'",

+                "tag:yaml.org,2002:int", tag);

+        //

+        Node strNode = yaml.represent("7");

+        assertEquals("tag:yaml.org,2002:str", strNode.getTag().toString());

+        // System.out.println(strNode);

+    }

+}