Index: tests/shortcode.php
===================================================================
--- tests/shortcode.php	(revision 1106)
+++ tests/shortcode.php	(working copy)
@@ -185,6 +185,26 @@
 		$this->assertEquals( 'test-shortcode-tag', $this->tagname );
 	}
 
+	/**
+	 * @ticket 7045
+	 */
+	function test_positional_atts_with_equals() {
+		$out = do_shortcode( '[test-shortcode-tag=foo]' );
+		$this->assertEquals( '', $out );
+		$this->assertEquals( array( 0 => 'foo' ), $this->atts );
+		$this->assertEquals( 'test-shortcode-tag', $this->tagname );
+	}
+
+	/**
+	 * @ticket 7045
+	 */
+	function test_positional_atts_with_equals_quotes() {
+		$out = do_shortcode( '[test-shortcode-tag="foo"]' );
+		$this->assertEquals( '', $out );
+		$this->assertEquals( array( 0 => 'foo' ), $this->atts );
+		$this->assertEquals( 'test-shortcode-tag', $this->tagname );
+	}
+
 	function test_footag_default() {
 		$out = do_shortcode('[footag]');
 		$this->assertEquals('foo = ', $out);
