Browse Source

Add a test for Tag#to_param (#5705)

pull/4/head
ysksn 6 years ago
committed by Eugen Rochko
parent
commit
7d7df877ef
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      spec/models/tag_spec.rb

+ 7
- 0
spec/models/tag_spec.rb View File

@ -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")

Loading…
Cancel
Save