Browse Source

Merge pull request #172 from communitiesuk/update-service-name

pull/175/head
Paul Robert Lloyd 3 years ago committed by GitHub
parent
commit
0c747eda02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      README.md
  2. 2
      config/locales/en.yml
  3. 2
      spec/features/test_spec.rb

2
README.md

@ -1,6 +1,6 @@
[![CI/CD Pipeline](https://github.com/communitiesuk/mhclg-data-collection-beta/actions/workflows/pipeline.yml/badge.svg?branch=main&event=push)](https://github.com/communitiesuk/mhclg-data-collection-beta/actions/workflows/pipeline.yml) [![CI/CD Pipeline](https://github.com/communitiesuk/mhclg-data-collection-beta/actions/workflows/pipeline.yml/badge.svg?branch=main&event=push)](https://github.com/communitiesuk/mhclg-data-collection-beta/actions/workflows/pipeline.yml)
# Log social housing lettings and sales (CORE) # Submit social housing lettings and sales data (CORE)
This is the codebase for the Ruby on Rails app that will handle the submission of lettings and sales of social housing data in England. This is the codebase for the Ruby on Rails app that will handle the submission of lettings and sales of social housing data in England.

2
config/locales/en.yml

@ -30,6 +30,6 @@
# available at https://guides.rubyonrails.org/i18n.html. # available at https://guides.rubyonrails.org/i18n.html.
en: en:
service_name: "Log social housing lettings and sales (CORE)" service_name: "Submit social housing lettings and sales data (CORE)"
organisation: organisation:
updated: "Organisation details updated" updated: "Organisation details updated"

2
spec/features/test_spec.rb

@ -2,7 +2,7 @@ require "rails_helper"
RSpec.describe "Test Features" do RSpec.describe "Test Features" do
it "Displays the name of the app" do it "Displays the name of the app" do
visit("/") visit("/")
expect(page).to have_content("Log social housing lettings and sales (CORE)") expect(page).to have_content("Submit social housing lettings and sales data (CORE)")
end end
it "Links to the About page" do it "Links to the About page" do

Loading…
Cancel
Save