60 lines
1.3 KiB
Ruby
60 lines
1.3 KiB
Ruby
# 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
|
|
|
|
it 'replaces symbols' do
|
|
Slug.for('evil#trout').should == 'evil-trout'
|
|
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
|
|
|
|
it 'strips trailing punctuation' do
|
|
Slug.for("hello...").should == "hello"
|
|
end
|
|
|
|
it 'strips leading punctuation' do
|
|
Slug.for("...hello").should == "hello"
|
|
end
|
|
|
|
it 'handles our initial transliteration' do
|
|
from = "àáäâčďèéëěêìíïîľĺňòóöôŕřšťůùúüûýžñç"
|
|
to = "aaaacdeeeeeiiiillnoooorrstuuuuuyznc"
|
|
Slug.for(from).should == to
|
|
end
|
|
|
|
it 'replaces underscores' do
|
|
Slug.for("o_o_o").should == "o-o-o"
|
|
end
|
|
|
|
it "doesn't generate slugs that are just numbers" do
|
|
Slug.for('123').should be_blank
|
|
end
|
|
|
|
it "doesn't generate slugs that are just numbers" do
|
|
Slug.for('電車男 2').should be_blank
|
|
end
|
|
|
|
it "doesn't keep single quotes within word" do
|
|
Slug.for("Jeff hate's this").should == "jeff-hates-this"
|
|
end
|
|
|
|
end
|
|
|