~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/rot13/tests/t/basic.test

  • Committer: Monty Taylor
  • Date: 2009-03-18 18:45:23 UTC
  • mto: (950.1.1 mordred)
  • mto: This revision was merged to the branch mainline in revision 943.
  • Revision ID: mordred@inaugust.com-20090318184523-mfbjyj5wkipv4n3b
Moved big tests to big suite. Added make target "make test-big" to allow for easy running of the big tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SELECT ROT13("hello world");
2
 
 
3
 
# Check for error if no parameter provided
4
 
--error ER_WRONG_PARAMCOUNT_TO_FUNCTION
5
 
SELECT ROT13();
6
 
--error ER_WRONG_PARAMCOUNT_TO_FUNCTION
7
 
SELECT ROT13('foo','bar','zoo');
8
 
SELECT ROT13('');
9
 
SELECT ROT13("UPPERCASE works 2");
10
 
SELECT ROT13(ROT13("hello world"));