blob: 8726e57593be10ed8bdcb6c1f1302a82e712e5ae (
plain)
1
2
3
4
5
6
7
8
9
10
|
require 'rails_helper'
describe "Tutorials" do
describe "GET /tutorials" do
it "works! (now write some real specs)" do
visit tutorials_path
expect(page).to have_content("CakeSide")
end
end
end
|