diff options
-rw-r--r-- | lib/tasks/stats.rake | 4 | ||||
-rw-r--r-- | spec/controllers/user_controller_spec.rb | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/lib/tasks/stats.rake b/lib/tasks/stats.rake index e206ce951..e1b58905d 100644 --- a/lib/tasks/stats.rake +++ b/lib/tasks/stats.rake @@ -2,7 +2,7 @@ namespace :stats do desc 'Produce transaction stats' task :show => :environment do - month_starts = (Date.new(2009, 1)..Date.new(2011, 5)).select { |d| d.day == 1 } + month_starts = (Date.new(2009, 1)..Date.new(2011, 8)).select { |d| d.day == 1 } headers = ['Period', 'Requests sent', 'Annotations added', @@ -45,4 +45,4 @@ namespace :stats do end end -end
\ No newline at end of file +end diff --git a/spec/controllers/user_controller_spec.rb b/spec/controllers/user_controller_spec.rb index c974c8a0d..438fb8c0c 100644 --- a/spec/controllers/user_controller_spec.rb +++ b/spec/controllers/user_controller_spec.rb @@ -179,7 +179,9 @@ describe UserController, "when signing up" do deliveries = ActionMailer::Base.deliveries deliveries.size.should == 1 - deliveries[0].body.should include("when you already have an") + + # This text may span a line break, depending on the length of the SITE_NAME + deliveries[0].body.should match(/when\s+you\s+already\s+have\s+an/) end # XXX need to do bob@localhost signup and check that sends different email |