10 lines
144 B
Ruby
10 lines
144 B
Ruby
require 'spec_helper'
|
|
|
|
describe "Pages" do
|
|
|
|
it "should render index" do
|
|
visit_path "/"
|
|
expect(page).to have_text("Gateway")
|
|
end
|
|
end
|