require 'features_helper' feature 'Posts' do background do rom.relations[:posts].insert(title: 'Hello world') end scenario 'I can see a list of posts' do visit '/posts' expect(page).to have_content('Hello world') end end