BikeBikeBike/spec/features/pages_spec.rb

9 lines
154 B
Ruby
Raw Normal View History

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