Repository URL to install this package:
|
Version:
1.3.0 ▾
|
require "rails_helper"
feature "Landing" do
scenario "Initial admin page" do
# Just testing that the dummy app works
visit admin_root_path
expect(page).to have_content("Schools")
expect(page).to have_content("Students")
end
end