Sha256: 4091a68c2b195d5249df8f616baa63d9c2f5fbfcad5e73ae3d360e5a1b93419d
Contents?: true
Size: 477 Bytes
Versions: 9
Compression:
Stored size: 477 Bytes
Contents
# frozen_string_literal: true require "spec_helper" describe "Documentation", type: :feature do let(:organization) { create(:organization) } before do switch_to_host(organization.host) end describe "documentation" do it "shows the project's documentation" do visit decidim_api.documentation_path within "h1" do expect(page).to have_content(organization.name) end expect(page).to have_content("Root query") end end end
Version data entries
9 entries across 9 versions & 1 rubygems