Sha256: 77966fe42c4669c99441d64b7f6757056c57b4956ed102d19c2dab0077fb6604

Contents?: true

Size: 947 Bytes

Versions: 33

Compression:

Stored size: 947 Bytes

Contents

require File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec_helper'))

describe RTurk::BlockWorker do

  before(:all) do
    aws = YAML.load(File.open(File.join(SPEC_ROOT, 'mturk.yml')))
    RTurk.setup(aws['AWSAccessKeyId'], aws['AWSAccessKey'], :sandbox => true)
    faker('block_worker', :operation => 'BlockWorker')
  end

  it "should ensure required params" do
    lambda{RTurk::BlockWorker(:worker_id => "123456789")}.should raise_error RTurk::MissingParameters
  end
  
  it "should successfully request the operation" do
    RTurk::Requester.should_receive(:request).once.with(
      hash_including('Operation' => 'BlockWorker'))
    RTurk::BlockWorker(:worker_id => "123456789", :reason => "Really poor work") rescue RTurk::InvalidRequest
  end
  
  it "should parse and return the result" do
    RTurk::BlockWorker(:worker_id => "123456789", :reason => "Really poor work").should
      be_a_kind_of RTurk::Response
  end

end

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
rturk-2.12.1 spec/operations/block_worker_spec.rb
rturk-2.12.0 spec/operations/block_worker_spec.rb
rturk-2.11.3 spec/operations/block_worker_spec.rb
rturk-2.11.2 spec/operations/block_worker_spec.rb
rturk-2.11.1 spec/operations/block_worker_spec.rb
rturk-2.11.0 spec/operations/block_worker_spec.rb
rturk-2.10.3 spec/operations/block_worker_spec.rb
rturk-2.10.2 spec/operations/block_worker_spec.rb
rturk-2.10.1 spec/operations/block_worker_spec.rb
rturk-2.10.0 spec/operations/block_worker_spec.rb
rturk-2.9.0 spec/operations/block_worker_spec.rb
rturk-2.8.0 spec/operations/block_worker_spec.rb
rturk-2.7.0 spec/operations/block_worker_spec.rb
rturk-2.6.0 spec/operations/block_worker_spec.rb
rturk-2.5.2 spec/operations/block_worker_spec.rb
rturk-2.5.0 spec/operations/block_worker_spec.rb
rturk-2.4.1 spec/operations/block_worker_spec.rb
rturk-2.4.0 spec/operations/block_worker_spec.rb
rturk-2.3.6 spec/operations/block_worker_spec.rb
rturk-2.3.5 spec/operations/block_worker_spec.rb