diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-09-28 14:18:47 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-09-28 14:18:47 +0000 |
commit | e3b49c052b497827c9f058feaa066bbfe184f4da (patch) | |
tree | 4224be14c405d38f7a8911f52360bdd0150673ce /activesupport/test | |
parent | 7cb1f93bcccb2fe476c85e4df71eea06db9a3a5b (diff) | |
download | rails-e3b49c052b497827c9f058feaa066bbfe184f4da.tar.gz rails-e3b49c052b497827c9f058feaa066bbfe184f4da.tar.bz2 rails-e3b49c052b497827c9f058feaa066bbfe184f4da.zip |
Fixed spelling errors (closes #9706) [tarmo/rmm5t]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7666 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/core_ext/date_ext_test.rb | 2 | ||||
-rw-r--r-- | activesupport/test/core_ext/date_time_ext_test.rb | 2 | ||||
-rw-r--r-- | activesupport/test/core_ext/time_ext_test.rb | 2 | ||||
-rw-r--r-- | activesupport/test/multibyte_handler_test.rb | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/activesupport/test/core_ext/date_ext_test.rb b/activesupport/test/core_ext/date_ext_test.rb index 4ec595d918..97b637f974 100644 --- a/activesupport/test/core_ext/date_ext_test.rb +++ b/activesupport/test/core_ext/date_ext_test.rb @@ -36,7 +36,7 @@ class DateExtCalculationsTest < Test::Unit::TestCase assert_equal Date.new(2005,6,22), Date.new(2005,2,22).change(:month => 6) end - def test_begining_of_week + def test_beginning_of_week assert_equal Date.new(2005,1,31), Date.new(2005,2,4).beginning_of_week assert_equal Date.new(2005,11,28), Date.new(2005,11,28).beginning_of_week #monday assert_equal Date.new(2005,11,28), Date.new(2005,11,29).beginning_of_week #tuesday diff --git a/activesupport/test/core_ext/date_time_ext_test.rb b/activesupport/test/core_ext/date_time_ext_test.rb index b7bdbc5deb..204e8cd676 100644 --- a/activesupport/test/core_ext/date_time_ext_test.rb +++ b/activesupport/test/core_ext/date_time_ext_test.rb @@ -46,7 +46,7 @@ class DateTimeExtCalculationsTest < Test::Unit::TestCase assert_equal 86399,DateTime.civil(2005,1,1,23,59,59).seconds_since_midnight end - def test_begining_of_week + def test_beginning_of_week assert_equal DateTime.civil(2005,1,31), DateTime.civil(2005,2,4,10,10,10).beginning_of_week assert_equal DateTime.civil(2005,11,28), DateTime.civil(2005,11,28,0,0,0).beginning_of_week #monday assert_equal DateTime.civil(2005,11,28), DateTime.civil(2005,11,29,0,0,0).beginning_of_week #tuesday diff --git a/activesupport/test/core_ext/time_ext_test.rb b/activesupport/test/core_ext/time_ext_test.rb index 4a64ebd584..5f06a4efa7 100644 --- a/activesupport/test/core_ext/time_ext_test.rb +++ b/activesupport/test/core_ext/time_ext_test.rb @@ -49,7 +49,7 @@ class TimeExtCalculationsTest < Test::Unit::TestCase end end - def test_begining_of_week + def test_beginning_of_week assert_equal Time.local(2005,1,31), Time.local(2005,2,4,10,10,10).beginning_of_week assert_equal Time.local(2005,11,28), Time.local(2005,11,28,0,0,0).beginning_of_week #monday assert_equal Time.local(2005,11,28), Time.local(2005,11,29,0,0,0).beginning_of_week #tuesday diff --git a/activesupport/test/multibyte_handler_test.rb b/activesupport/test/multibyte_handler_test.rb index 9905cf65d6..174d7b790d 100644 --- a/activesupport/test/multibyte_handler_test.rb +++ b/activesupport/test/multibyte_handler_test.rb @@ -15,7 +15,7 @@ module UTF8HandlingTest # This is an ASCII string with some russian strings and a ligature. It's nicely calibrated, because # slicing it at some specific bytes will kill your characters if you use standard Ruby routines. # It has both capital and standard letters, so that we can test case conversions easily. - # It has 26 charactes and 28 when the ligature gets split during normalization. + # It has 26 characters and 28 when the ligature gets split during normalization. @string = "Abcd Блå ffi бла бла бла бла" @string_kd = "Abcd Блå ffi бла бла бла бла" @string_kc = "Abcd Блå ffi бла бла бла бла" |