This commit is contained in:
Rafael Mendonça França 2014-04-14 18:51:34 -03:00
parent 4d21e496e1
commit e8c66288d6
1 changed files with 4 additions and 4 deletions

View File

@ -489,7 +489,7 @@ module ApplicationTests
test "valid timezone is setup correctly" do
add_to_config <<-RUBY
config.root = "#{app_path}"
config.time_zone = "Wellington"
config.time_zone = "Wellington"
RUBY
require "#{app_path}/config/environment"
@ -500,7 +500,7 @@ module ApplicationTests
test "raises when an invalid timezone is defined in the config" do
add_to_config <<-RUBY
config.root = "#{app_path}"
config.time_zone = "That big hill over yonder hill"
config.time_zone = "That big hill over yonder hill"
RUBY
assert_raise(ArgumentError) do
@ -511,7 +511,7 @@ module ApplicationTests
test "valid beginning of week is setup correctly" do
add_to_config <<-RUBY
config.root = "#{app_path}"
config.beginning_of_week = :wednesday
config.beginning_of_week = :wednesday
RUBY
require "#{app_path}/config/environment"
@ -522,7 +522,7 @@ module ApplicationTests
test "raises when an invalid beginning of week is defined in the config" do
add_to_config <<-RUBY
config.root = "#{app_path}"
config.beginning_of_week = :invalid
config.beginning_of_week = :invalid
RUBY
assert_raise(ArgumentError) do