From 6236fd22a0978f420c2d46bd8ecaf4152e0a3605 Mon Sep 17 00:00:00 2001 From: Sarah Mei Date: Tue, 27 Dec 2011 14:48:39 -0800 Subject: [PATCH] Found 3 spec files that were never getting run because they didn't have the _spec at the end of the filename. This commit renames them, so that they are now included in rake spec. Unsurprisingly, they all fail. Since they represent actual changing code that isn't tested, I'm checking them in anyway. Thx Pistos for pointer to the first file, which prompted me to look for others. --- spec/helpers/{profiles_helper.rb => profiles_helper_spec.rb} | 0 .../jobs/{gather_o_embed_data.rb => gather_o_embed_data_spec.rb} | 0 .../{mail_private_message.rb => mail_private_message_spec.rb} | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename spec/helpers/{profiles_helper.rb => profiles_helper_spec.rb} (100%) rename spec/models/jobs/{gather_o_embed_data.rb => gather_o_embed_data_spec.rb} (100%) rename spec/models/jobs/mail/{mail_private_message.rb => mail_private_message_spec.rb} (100%) diff --git a/spec/helpers/profiles_helper.rb b/spec/helpers/profiles_helper_spec.rb similarity index 100% rename from spec/helpers/profiles_helper.rb rename to spec/helpers/profiles_helper_spec.rb diff --git a/spec/models/jobs/gather_o_embed_data.rb b/spec/models/jobs/gather_o_embed_data_spec.rb similarity index 100% rename from spec/models/jobs/gather_o_embed_data.rb rename to spec/models/jobs/gather_o_embed_data_spec.rb diff --git a/spec/models/jobs/mail/mail_private_message.rb b/spec/models/jobs/mail/mail_private_message_spec.rb similarity index 100% rename from spec/models/jobs/mail/mail_private_message.rb rename to spec/models/jobs/mail/mail_private_message_spec.rb