jam-cloud/ruby/spec/jam_ruby/models/get_work_spec.rb

15 lines
210 B
Ruby
Raw Normal View History

2014-02-25 03:50:58 +00:00
require 'spec_helper'
describe GetWork do
2014-02-27 16:42:47 +00:00
2014-02-25 03:50:58 +00:00
it "get_work_1" do
2014-03-03 20:31:25 +00:00
x = GetWork.get_work(0)
2014-02-25 03:50:58 +00:00
x.should be_nil
end
it "get_work_list_1" do
2014-03-03 20:31:25 +00:00
x = GetWork.get_work_list(0)
2014-02-25 03:50:58 +00:00
x.should eql([])
end
2014-03-03 20:31:25 +00:00
2014-02-25 03:50:58 +00:00
end