Skip to content

Commit

Permalink
Removed tests that should be covered in activesupport.
Browse files Browse the repository at this point in the history
  • Loading branch information
ebeigarts committed Dec 4, 2011
1 parent 0daec1c commit 8526b1e
Showing 1 changed file with 0 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,23 +17,3 @@
n.to_d.should == BigDecimal.new(n.to_s)
end
end

if ENV['RAILS_GEM_VERSION'] >= '2.3'

describe "OracleEnhancedAdapter Unicode aware upcase and downcase" do
before(:all) do
@down = "āčēģīķļņšūž"
@up = "ĀČĒĢĪĶĻŅŠŪŽ"
end

it "should translate Unicode string to upcase" do
@down.mb_chars.upcase.to_s.should == @up
end

it "should translate Unicode string to downcase" do
@up.mb_chars.downcase.to_s.should == @down
end

end

end

0 comments on commit 8526b1e

Please sign in to comment.