Create README files (with test instructions) from our test definition.
Take a look at our test definition section (Group):
group "Customize readme output" do
readme "This is our README example."
readme "And here we'll see how to use readme keyword"
target "Create user david."
readme "Help: you can use 'useradd' command to create users."
readme "Remember: Only root is permitted to create new users."
run "id david"
expect "david"
end
In this example, localhost's OS must be GNU/Linux (any other compatible OS) because the command used is
id david
.
There exists some readme
instructions after group
and target
lines.
To generate automatically a README file from previous test, execute this:
teuton readme example/15-readme > example/15-readme/README.md
Let's see the output: Content of example/15-readme/README.md
file.
This is our readme example. And here we'll see how to use readme keyword
Go to LOCALHOST host, and do next:
- Create user david.
- Help: you can use 'useradd' command to create users.
- Remember: Only root is permitted to create new users.