2013-04-19 19:58:27 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'Home' do
|
2013-06-13 18:41:38 +02:00
|
|
|
it "has Hello World in title" do
|
2013-04-19 19:58:27 +02:00
|
|
|
visit root_path
|
2013-06-13 18:41:38 +02:00
|
|
|
expect(page).to have_title I18n.t('hello')
|
2013-04-19 19:58:27 +02:00
|
|
|
end
|
|
|
|
end
|