Moved all old tests to another folder
This commit is contained in:
parent
960770d73f
commit
2ad6dfabab
15 changed files with 8 additions and 8 deletions
3
tests/old_tests/example_project/scripts/unit.bash
Normal file
3
tests/old_tests/example_project/scripts/unit.bash
Normal file
|
@ -0,0 +1,3 @@
|
|||
echo "Hello World!"
|
||||
read -r -p "What is your name? " name
|
||||
echo "Hello $name"
|
4
tests/old_tests/example_project/scripts/unit.lua
Normal file
4
tests/old_tests/example_project/scripts/unit.lua
Normal file
|
@ -0,0 +1,4 @@
|
|||
print("Hello World!")
|
||||
print("What is your name?")
|
||||
name = io.read()
|
||||
print("Hello " .. name)
|
6
tests/old_tests/example_project/scripts/unit.pl
Normal file
6
tests/old_tests/example_project/scripts/unit.pl
Normal file
|
@ -0,0 +1,6 @@
|
|||
use warnings;
|
||||
print("Hello, World!\n");
|
||||
print("What is your name? ");
|
||||
my $name = <STDIN>;
|
||||
chomp($name);
|
||||
print("Hello, $name\n");
|
3
tests/old_tests/example_project/scripts/unit.py2
Normal file
3
tests/old_tests/example_project/scripts/unit.py2
Normal file
|
@ -0,0 +1,3 @@
|
|||
print('Hello World!')
|
||||
name = input('What is your name? ')
|
||||
print('Hello', name)
|
3
tests/old_tests/example_project/scripts/unit.py3
Normal file
3
tests/old_tests/example_project/scripts/unit.py3
Normal file
|
@ -0,0 +1,3 @@
|
|||
print('Hello World!')
|
||||
name = input('What is your name? ')
|
||||
print('Hello', name)
|
Loading…
Add table
Add a link
Reference in a new issue