diff options
author | murphy <murphy@rubychan.de> | 2009-04-22 02:46:32 +0000 |
---|---|---|
committer | murphy <murphy@rubychan.de> | 2009-04-22 02:46:32 +0000 |
commit | 2a9211596eafed6abd977842241f9bc369e86ef2 (patch) | |
tree | 93d330c37d5318d4aac917f90402a481427449cd /test | |
parent | 59b31ae8596f9606217b09d4e3f00dcf5aab8475 (diff) | |
download | coderay-2a9211596eafed6abd977842241f9bc369e86ef2.tar.gz |
SQL scanner cleanup (issue #33).
* Increased size of the test suite random samples.
Diffstat (limited to 'test')
-rw-r--r-- | test/scanners/coderay_suite.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/scanners/coderay_suite.rb b/test/scanners/coderay_suite.rb index 5edf6be..dc0c1a0 100644 --- a/test/scanners/coderay_suite.rb +++ b/test/scanners/coderay_suite.rb @@ -100,15 +100,15 @@ module CodeRay if ENV['deluxe'] MAX_CODE_SIZE_TO_HIGHLIGHT = 500_000_000 MAX_CODE_SIZE_TO_TEST = 500_000_000 - DEFAULT_MAX = 1024 + DEFAULT_MAX = 4096 elsif ENV['fast'] MAX_CODE_SIZE_TO_HIGHLIGHT = 5_000_000 MAX_CODE_SIZE_TO_TEST = 1_000_000 DEFAULT_MAX = 16 else - MAX_CODE_SIZE_TO_HIGHLIGHT = 5_000_000 - MAX_CODE_SIZE_TO_TEST = 5_000_000 - DEFAULT_MAX = 512 + MAX_CODE_SIZE_TO_HIGHLIGHT = 10_000_000 + MAX_CODE_SIZE_TO_TEST = 10_000_000 + DEFAULT_MAX = 1024 end class << self |