creddit/spec/helpers/subcreddits_helper_spec.rb

16 lines
385 B
Ruby
Raw Normal View History

2015-08-12 16:45:30 -04:00
require 'rails_helper'
describe SubcredditsHelper do
describe '#subcreddit_name' do
context 'when valid subcreddit provided' do
let(:subcreddit) { create(:subcreddit) }
it 'should set the title to a link to the subcreddit'
end
context 'when an invalid subcreddit is provided' do
it 'should set the title to a link to the frontpage'
end
end
end