Files
ch420/spec/helpers/application_helper_spec.rb
T
2017-02-26 18:22:28 +01:00

11 lines
208 B
Ruby

require 'spec_helper'
describe ApplicationHelper do
describe '.title' do
it 'sets content for :title' do
helper.title 'test'
expect(view.content_for(:title)).to eq 'test'
end
end
end