Skip to content

Commit

Permalink
made these changes but then
Browse files Browse the repository at this point in the history
merged this repo into testml-tml.
  • Loading branch information
ingydotnet committed Feb 4, 2013
1 parent 0a6507e commit f0444cc
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions basics.tml
Expand Up @@ -3,14 +3,18 @@

%TestML 0.1.0

# We should support the Plan variable in testml-lite. This will be especially
# useful in this test.
Plan = 4;
# The title of the test. Goes into a special global variable. Variables
# strating with uppercase letter usually belong to TestML. Title may or may
# not be used by a framework, but still nicely self-documenting.
Title = 'A Basic TestML File'

# The Plan global variable indicates the expected number of tests.
Plan = 4

# The bridge class will need to support 'uppercase' and 'lowercase' methods.
*text.uppercase == *upper;
*text.lowercase == *lower;
*lower.uppercase == *upper.lowercase.uppercase;
*text.uppercase == *upper
*text.lowercase == *lower
*lower.uppercase == *upper.lowercase.uppercase


# Define 2 data blocks. 'Test One' is the block label.
Expand Down

0 comments on commit f0444cc

Please sign in to comment.