whenever/test/job_test.rb

38 lines
1.2 KiB
Ruby
Raw Normal View History

2010-07-02 21:39:17 +00:00
require File.expand_path(File.dirname(__FILE__) + "/test_helper")
class JobTest < Test::Unit::TestCase
context "A Job" do
should "output the :task" do
job = new_job(:template => ":task", :task => 'abc123')
assert_equal %q(abc123), job.output
end
should "output the :task if it's in single quotes" do
job = new_job(:template => "':task'", :task => 'abc123')
assert_equal %q('abc123'), job.output
end
should "output the :task if it's in double quotes" do
job = new_job(:template => '":task"', :task => 'abc123')
assert_equal %q("abc123"), job.output
end
should "output escaped single quotes in :task when it's wrapped in them" do
job = new_job(:template => "outside ':task' outside", :task => "'inside'")
assert_equal %q(outside ''\''inside'\''' outside), job.output
end
should "output escaped double quotes in :task when it's wrapped in them" do
job = new_job(:template => 'outside ":task" outside', :task => '"inside"')
assert_equal %q(outside "\"inside"\" outside), job.output
end
end
private
def new_job(options)
Whenever::Job.new(options)
end
end