Add bootstrap and main application template

This commit is contained in:
maddiebaka
2023-10-22 15:03:45 -04:00
parent 1e80e2cfe4
commit 11710bfb68
6 changed files with 53 additions and 14 deletions

View File

@@ -6,6 +6,11 @@ RSpec.describe "Root path", type: :request do
get root_path
expect(response).to have_http_status(200)
end
it "should have a link to the dictionary" do
get root_path
expect(response.body).to have_selector(%(a[href="#{dictionary_index_path}"]))
end
end
describe "logged out" do