Sha256: d28d3f5cf695c57a8cafd7701a0e74fe3e2fe4479cec30239c69effe565e5e28

Contents?: true

Size: 898 Bytes

Versions: 27

Compression:

Stored size: 898 Bytes

Contents

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

describe RTurk::ExtendHIT do

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

  it "should ensure required params" do
    lambda{RTurk::ExtendHIT(:hit_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' => 'ExtendHIT'))
    RTurk::ExtendHIT(:hit_id => "123456789", :assignments=> 1) rescue RTurk::InvalidRequest
  end
  
  it "should parse and return the result" do
    RTurk::ExtendHIT(:hit_id => "123456789", :seconds => 3600).should
      be_a_kind_of RTurk::Response
  end

end

Version data entries

27 entries across 27 versions & 1 rubygems

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