Drupal 8.0.0 beta 12. More info: https://www.drupal.org/node/2514176
5
core/modules/simpletest/files/README.txt
Normal file
|
@ -0,0 +1,5 @@
|
|||
|
||||
These files are useful in tests that upload files or otherwise need to
|
||||
manipulate files, in which case they are copied to the files directory as
|
||||
specified in the site settings. Dummy files can also be generated by tests in
|
||||
order to save space.
|
1
core/modules/simpletest/files/html-1.txt
Normal file
|
@ -0,0 +1 @@
|
|||
<h1>SimpleTest HTML</h1>
|
1
core/modules/simpletest/files/html-2.html
Normal file
|
@ -0,0 +1 @@
|
|||
<h1>SimpleTest HTML</h1>
|
BIN
core/modules/simpletest/files/image-1.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
core/modules/simpletest/files/image-2.jpg
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
core/modules/simpletest/files/image-test-no-transparency.gif
Normal file
After Width: | Height: | Size: 964 B |
After Width: | Height: | Size: 183 B |
BIN
core/modules/simpletest/files/image-test.gif
Normal file
After Width: | Height: | Size: 183 B |
BIN
core/modules/simpletest/files/image-test.jpg
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
core/modules/simpletest/files/image-test.png
Normal file
After Width: | Height: | Size: 125 B |
3
core/modules/simpletest/files/javascript-1.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
<script>
|
||||
alert('SimpleTest PHP was executed!');
|
||||
</script>
|
3
core/modules/simpletest/files/javascript-2.script
Normal file
|
@ -0,0 +1,3 @@
|
|||
<script>
|
||||
alert('SimpleTest PHP was executed!');
|
||||
</script>
|
3
core/modules/simpletest/files/php-1.txt
Normal file
|
@ -0,0 +1,3 @@
|
|||
<?php
|
||||
print 'SimpleTest PHP was executed!';
|
||||
?>
|
2
core/modules/simpletest/files/php-2.php
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?php
|
||||
print 'SimpleTest PHP was executed!';
|
1
core/modules/simpletest/files/sql-1.txt
Normal file
|
@ -0,0 +1 @@
|
|||
SELECT invalid_field FROM {invalid_table}
|
1
core/modules/simpletest/files/sql-2.sql
Normal file
|
@ -0,0 +1 @@
|
|||
SELECT invalid_field FROM {invalid_table}
|