github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

rubys / whenever forked from javan/whenever

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 2
    • 58
  • Source
  • Commits
  • Network (58)
  • Downloads (6)
  • Wiki (1)
  • Graphs
  • Tree: 08e8a2f

click here to add a description

click here to add a homepage

  • Branches (3)
    • gh-pages
    • integration
    • master
  • Tags (6)
    • v0.3.0
    • v0.2.2
    • v0.1.7
    • v0.1.3
    • v0.1.2
    • integration
Sending Request…
Enable Donations

Pledgie Donations

Once activated, we'll place the following badge in your repository's detail box:
Pledgie_example
This service is courtesy of Pledgie.

Provides clean ruby syntax for defining messy cron jobs and running them Whenever. — Read more

  cancel

  cancel
  • Private
  • Read-Only
  • HTTP Read-Only

This URL has Read+Write access

update gem 
Sam Ruby (author)
Tue Jun 09 06:35:34 -0700 2009
commit  08e8a2fd2c8c89676e0477477bdeddb086eb7c20
tree    931e7307f6d64477e24d38c42272b6dd098cc6aa
parent  acf473663f16417d86ffbc1696ffacaff4d79443
whenever / test / output_at_test.rb test/output_at_test.rb
100644 83 lines (70 sloc) 2.004 kb
edit raw blame history
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
require File.expand_path(File.dirname(__FILE__) + "/test_helper")
 
class OutputAtTest < Test::Unit::TestCase
  
  context "weekday at a (single) given time" do
    setup do
      @output = Whenever.cron \
      <<-file
every "weekday", :at=>'5:02am' do
command "blahblah"
end
file
    end
    
    should "output the runner using that path" do
      assert_match '2 5 * * mon-fri blahblah', @output
    end
  end
  
  context "weekday at a multiple diverse times, via an array" do
    setup do
      @output = Whenever.cron \
      <<-file
every "weekday", :at=>%w(5:02am 3:52pm) do
command "blahblah"
end
file
    end
    
    should "output the runner using that path" do
      assert_match '2 5 * * mon-fri blahblah', @output
      assert_match '52 15 * * mon-fri blahblah', @output
    end
  end
  
  context "weekday at a multiple diverse times, comma separated" do
    setup do
      @output = Whenever.cron \
      <<-file
every "weekday", :at=>'5:02am, 3:52pm' do
command "blahblah"
end
file
    end
    
    should "output the runner using that path" do
      assert_match '2 5 * * mon-fri blahblah', @output
      assert_match '52 15 * * mon-fri blahblah', @output
    end
  end
  
  context "weekday at a multiple aligned times" do
    setup do
      @output = Whenever.cron \
      <<-file
every "weekday", :at=>'5:02am, 3:02pm' do
command "blahblah"
end
file
    end
    
    should "output the runner using that path" do
      assert_match '2 5,15 * * mon-fri blahblah', @output
    end
  end
  
  context "various days at a various aligned times" do
    setup do
      @output = Whenever.cron \
      <<-file
every "mon,wed,fri", :at=>'5:02am, 3:02pm' do
command "blahblah"
end
file
    end
    
    should "output the runner using that path" do
      assert_match '2 5,15 * * mon,wed,fri blahblah', @output
    end
  end
  
end
 
Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server