Fix ActionPack build on Windows: we really should not test anything regarding symlinks on Windows.

Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
This commit is contained in:
Yaroslav Markin 2008-12-27 20:28:28 +03:00 committed by Pratik Naik
parent 28347d889b
commit fdaa9ed033
1 changed files with 11 additions and 9 deletions

View File

@ -165,6 +165,7 @@ class LayoutStatusIsRenderedTest < ActionController::TestCase
end
end
unless RUBY_PLATFORM =~ /(:?mswin|mingw|bccwin)/
class LayoutSymlinkedTest < LayoutTest
layout "symlinked/symlinked_layout"
end
@ -177,3 +178,4 @@ class LayoutSymlinkedIsRenderedTest < ActionController::TestCase
assert_equal "layouts/symlinked/symlinked_layout", @response.layout
end
end
end