public
Fork of javan/whenever
Description: Provides clean ruby syntax for defining messy cron jobs and running them Whenever.
Homepage:
Clone URL: git://github.com/rubys/whenever.git
whenever / test / output_at_test.rb
100644 83 lines (70 sloc) 2.004 kb
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