forgot which env I was in

This commit is contained in:
Taylor Griffin
2014-10-16 06:56:39 +11:00
parent a4e7f93421
commit d627d8394e

View File

@@ -4,9 +4,9 @@ feature "Changing locales" do
scenario "Locale can be set with a query param" do
visit "/"
expect(page).to have_content("Growstuff (dev) is a community of food gardeners.")
expect(page).to have_content("Growstuff (test) is a community of food gardeners.")
visit "/?locale=ja"
expect(page).to have_content("Growstuff (dev)はガーデナーのコミュニティです。")
expect(page).to have_content("Growstuff (test)はガーデナーのコミュニティです。")
end
end