commit: 7d7df877ef042cda2095f35061d65a9051ad987b
parent: c73a1fb5377556884ffab97fe95e98b92a027ebe
Author: ysksn <bluewhale1982@gmail.com>
Date: Thu, 16 Nov 2017 00:04:41 +0900
Add a test for Tag#to_param (#5705)
Diffstat:
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/spec/models/tag_spec.rb b/spec/models/tag_spec.rb
@@ -35,6 +35,13 @@ RSpec.describe Tag, type: :model do
end
end
+ describe '#to_param' do
+ it 'returns name' do
+ tag = Fabricate(:tag, name: 'foo')
+ expect(tag.to_param).to eq 'foo'
+ end
+ end
+
describe '.search_for' do
it 'finds tag records with matching names' do
tag = Fabricate(:tag, name: "match")