2013-02-06 03:16:51 +08:00
|
|
|
# encoding: utf-8
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
require 'slug'
|
|
|
|
|
|
|
|
describe Slug do
|
|
|
|
|
|
|
|
it 'replaces spaces with hyphens' do
|
|
|
|
Slug.for("hello world").should == 'hello-world'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'changes accented characters' do
|
|
|
|
Slug.for('àllo').should == 'allo'
|
|
|
|
end
|
|
|
|
|
2013-02-13 07:53:06 +08:00
|
|
|
it 'replaces symbols' do
|
|
|
|
Slug.for('evil#trout').should == 'evil-trout'
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'handles a.b.c properly' do
|
|
|
|
Slug.for("a.b.c").should == "a-b-c"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'handles double dots right' do
|
|
|
|
Slug.for("a....b.....c").should == "a-b-c"
|
|
|
|
end
|
|
|
|
|
2013-02-07 09:52:14 +08:00
|
|
|
it 'strips trailing punctuation' do
|
|
|
|
Slug.for("hello...").should == "hello"
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'strips leading punctuation' do
|
|
|
|
Slug.for("...hello").should == "hello"
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-02-12 10:34:38 +08:00
|
|
|
it 'handles our initial transliteration' do
|
|
|
|
from = "àáäâčďèéëěêìíïîľĺňòóöôŕřšťůùúüûýžñç"
|
|
|
|
to = "aaaacdeeeeeiiiillnoooorrstuuuuuyznc"
|
|
|
|
Slug.for(from).should == to
|
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|