diff options
author | Anil Wadghule <anildigital@gmail.com> | 2010-04-14 00:56:58 +0530 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-04-13 12:39:03 -0700 |
commit | 518891f4907c9967cad22552eac110e81a0d44c0 (patch) | |
tree | 415741bfd95a70769fa5f8cbc7b6139392196d46 /actionpack/test/controller | |
parent | 8116a2b981b7382c467f84597e92156385f037d7 (diff) | |
download | rails-518891f4907c9967cad22552eac110e81a0d44c0.tar.gz rails-518891f4907c9967cad22552eac110e81a0d44c0.tar.bz2 rails-518891f4907c9967cad22552eac110e81a0d44c0.zip |
Use correct RUBY_PLATFORM regex for Windows env [#4385 state:resolved]
Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
Diffstat (limited to 'actionpack/test/controller')
-rw-r--r-- | actionpack/test/controller/layout_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/controller/layout_test.rb b/actionpack/test/controller/layout_test.rb index 4d687c1ec6..e1c1128753 100644 --- a/actionpack/test/controller/layout_test.rb +++ b/actionpack/test/controller/layout_test.rb @@ -209,7 +209,7 @@ class LayoutStatusIsRenderedTest < ActionController::TestCase end end -unless RUBY_PLATFORM =~ /(:?mswin|mingw|bccwin)/ +unless RUBY_PLATFORM =~ /mswin|mingw/ class LayoutSymlinkedTest < LayoutTest layout "symlinked/symlinked_layout" end |