Files
ch420/spec/helpers/application_helper_spec.rb
T

11 lines
207 B
Ruby
Raw Normal View History

2015-10-05 12:40:08 +02:00
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