Ruby/Rails の単体テストの正規表現の問題が少しありました。
ランニング:
- レール 4.0.0
- ルビー 2.0.0-p247
- RVM 1.23.5
- Mac OS X 10.8.5
applicaton_helper
日付がどれだけ遡ったかに応じて日付をフォーマットするメソッドを作成します。メソッドは次のとおりです。
module ApplicationHelper
def humanize_datetime time
time = Time.at(time)
date = time.to_date
today = Date.today
time_format = "%-I:%M %p"
#if the time is within today, we simply use the time
if date == today
time.strftime time_format
# if the time is within the week, we show day of the week and the time
elsif today - date < 7
time.strftime "%a #{time_format}"
# if time falls before this week, we should the date (e.g. Oct 30)
else
time.strftime "%b %e"
end
end
end
これにより、望ましい結果が得られているように見えますが、何らかの理由で、次のテストが失敗しています。
require 'test_helper'
class ApplicationHelperTest < ActionView::TestCase
test "humanize_dateime should display only time when datetime is within today" do
formatted = humanize_datetime Time.now
assert_match /\A\d{1,2}\:\d\d (AM|PM)\z/, formatted
end
test "humanize_datetime should display day of week and time when datetime is not today but within week" do
yesterday_formatted = humanize_datetime (Date.today - 1).to_time # yesterday
assert_match /\A[a-zA-z]{3} \d{1,2}\:\d\d (AM|PM)\z/, yesterday_formatted
within_week_formatted = humanize_datetime (Date.today - 6).to_time # just within this week
assert_match /\A[a-zA-z]{3} \d{1,2}\:\d\d (AM|PM)\z/, within_week_formatted
end
test "humanize_datetime should display date when datetime is before this week" do
last_week_formatted = humanize_datetime (Date.today - 7).to_time
assert_match /\A[a-zA-Z]{3} \d{1,2}\z/, last_week_formatted
end
end
最後のテストは失敗し、
1) 失敗: ApplicationHelperTest#test_humanize_datetime_should_display_date_when_datetime_is_before_this_week [/Users/mohammad/rails_projects/stopsmoking/test/helpers/application_helper_test.rb:20]: 予想 /\A[a-zA-Z]{3} \d{1,2}\ z/ は「10 月 8 日」に一致します。
正規表現が私には問題ないように見え、http://rubular.com/で式をテストしたことを考えると、これは本当に奇妙です。ここにある他のすべてのテストに合格しています。また、文字列区切り記号の先頭/末尾と、後の量指定子を削除しようとしました\d
。
なぜこれが起こっているのかについて何か考えはありますか?