Add (failing) transliteration spec

This commit is contained in:
Jari Bakken 2010-05-14 13:00:59 +02:00
parent 2924ebef0e
commit 721a60c3b1
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# encoding: utf-8
module ICU
module Transliteration
describe Transliterator do
before { @t = Transliterator.new("Greek-Latin", :reverse) }
after { @t.close }
it "should transliterate a string" do
@t.transliterate("Hello World").should == "Χελλο Ωορλδ"
end
end
end
end