Use #{ENV['GROWSTUFF_SITE_NAME']}

This commit is contained in:
Daniel O'Connor
2015-09-15 11:38:20 +09:30
parent 00ca01dc33
commit 021cb4f93b
2 changed files with 2 additions and 2 deletions

View File

@@ -71,7 +71,7 @@ feature "signin", :js => true do
# Signed up and logged in
expect(current_path).to eq root_path
expect(page.text).to include("Welcome to Growstuff (test), tdawg")
expect(page.text).to include("Welcome to #{ENV['GROWSTUFF_SITE_NAME']}, tdawg")
end
end
end

View File

@@ -71,7 +71,7 @@ feature "signup", :js => true do
# Signed up and logged in
expect(current_path).to eq root_path
expect(page.text).to include("Welcome to Growstuff (test), tdawg")
expect(page.text).to include("Welcome to #{ENV['GROWSTUFF_SITE_NAME']}, tdawg")
end
end
end