Index: /CKReleaser/trunk/test/test.js
===================================================================
--- /CKReleaser/trunk/test/test.js	(revision 4858)
+++ /CKReleaser/trunk/test/test.js	(revision 4859)
@@ -165,44 +165,4 @@
 		m.update( s.getBytes(), 0, s.length() );
 		return new java.math.BigInteger( 1, m.digest() ).toString( 16 );
-	}
-
-	function testSamples()
-	{
-		print( "\nTesting samples\n" );
-
-		CKRELEASER.release.samples.source = '_assets/samples';
-		CKRELEASER.release.samples.target = 'tmp/samples';
-		CKRELEASER.release.samples.template = '_assets/samples/sample.html';
-
-		var name = 'skins';
-		var test, tempFile, correctFile;
-
-		var samplesProcessor = new CKRELEASER.samplesProcessor();
-		samplesProcessor.createSamples( '.', '.' );
-
-		var dir = new File( CKRELEASER.release.samples.target );
-		var dirList = dir.list();
-
-		assertEquals( true, dirList.length > 0, dir + " not empty?" );
-
-		for ( var j = 0 ; j < dirList.length ; j++ )
-		{
-			if ( dirList[j].indexOf( "correct.txt" ) != -1 )
-			{
-				test = dirList[j].replace( ".correct.txt", "" );
-
-				correctFile = new File( dir, dirList[j] );
-
-				if ( !correctFile.isDirectory() )
-				{
-					tempFile = new File( dir, test + '.html' );
-
-					assertEquals( true, tempFile.exists(), tempFile + " exists?" );
-
-					assertEquals( md5( CKRELEASER.io.readFile( correctFile ).replace( /(?:\r|\n)/g, "" ) ), md5( CKRELEASER.io.readFile(
-							tempFile ).replace( /(?:\r|\n)/g, "" ) ), 'Checking md5 of created file [' + test + '.html]' );
-				}
-			}
-		}
 	}
 
@@ -347,5 +307,4 @@
 	testDirectives();
 	testSkins();
-	testSamples();
 	testRemoveComments();
 	testBom();
