def test_youtube_semiWorking_embed(self):
		testString_1 = youtube_to_embed("http://vimeo.com/13595568","youtube_1")
		testString_2 = youtube_to_embed("http://vimeo.com/1532967","youtube_2")
		testString_3 = youtube_to_embed("http://www.youtube.com/vatican","youtube_3")

		assert testString_1 == '<a href="http://vimeo.com/13595568">youtube_1 (Vimeo)</a><br />'

		assert testString_2 == '<a href="http://vimeo.com/1532967">youtube_2 (Vimeo)</a><br />'

		assert testString_3 == '<a href="http://www.youtube.com/vatican">youtube_3 (Youtube)</a><br />'
	def test_youtube_notWorking_embed(self):
		testString_1 = youtube_to_embed("http://youtu.be/_iNBKlBcXkY","youtube_1")
		testString_2 = youtube_to_embed("http://commons.wikimedia.org/wiki/Obama_Administration_weekly_video_addresses","youtube_2")
		testString_3 = youtube_to_embed("http://www.tepco.co.jp/en/news/library/movie-01e.html","youtube_3")

		assert testString_1 == '<a href="http://youtu.be/_iNBKlBcXkY">youtube_1</a><br />'

		assert testString_2 == '<a href="http://commons.wikimedia.org/wiki/Obama_Administration_weekly_video_addresses">youtube_2</a><br />'

		assert testString_3 == '<a href="http://www.tepco.co.jp/en/news/library/movie-01e.html">youtube_3</a><br />'
	def test_youtube_working_embed(self):
		testString_1 = youtube_to_embed("http://www.youtube.com/watch?v=RUKsyA_z7n8","youtube_1")
		testString_2 = youtube_to_embed("http://www.youtube.com/watch?v=nBzHCVv5GeQ","youtube_2")
		testString_3 = youtube_to_embed("http://www.youtube.com/watch?v=5gg1hkd5wnI","youtube_3")

		assert testString_1 == '<iframe width="560" height="315" src="http://www.youtube.com/embed/RUKsyA_z7n8" frameborder="0" name="youtube_1?wmode=opaque" allowfullscreen></iframe>'

		assert testString_2 == '<iframe width="560" height="315" src="http://www.youtube.com/embed/nBzHCVv5GeQ" frameborder="0" name="youtube_2?wmode=opaque" allowfullscreen></iframe>'

		assert testString_3 == '<iframe width="560" height="315" src="http://www.youtube.com/embed/5gg1hkd5wnI" frameborder="0" name="youtube_3?wmode=opaque" allowfullscreen></iframe>'