Sha256: 34a40599d8ed3302baa778c7d391793fed54524caf677579ce765915d7e4c90f

Contents?: true

Size: 1.14 KB

Versions: 12

Compression:

Stored size: 1.14 KB

Contents

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

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

  it "should ensure required params" do
    lambda{RTurk::GetAssignment()}.should raise_error RTurk::MissingParameters
  end

  it "should successfully request an assignment" do
    RTurk::Requester.should_receive(:request).once.with(
      hash_including('Operation' => 'GetAssignment'))
    RTurk::GetAssignment(:assignment_id => "abcd") rescue RTurk::InvalidRequest
  end

  context "an HIT with one assignment" do
    before(:all) do
      WebMock.reset!
      faker('get_assignment', :operation => 'GetAssignment')
    end

    it "should parse and return and answer" do
      answers = RTurk::GetAssignment(:assignment_id => "abcd").assignment.answers
      answers['Question100'].should eql("Move to X.")
    end

    it "should parse and return the hit" do
      hit = RTurk::GetAssignment(:assignment_id => "abcd").hit
      hit.title.should eql("Location")
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
rturk-2.12.1 spec/operations/get_assignment_spec.rb
rturk-2.12.0 spec/operations/get_assignment_spec.rb
rturk-2.11.3 spec/operations/get_assignment_spec.rb
rturk-2.11.2 spec/operations/get_assignment_spec.rb
rturk-2.11.1 spec/operations/get_assignment_spec.rb
rturk-2.11.0 spec/operations/get_assignment_spec.rb
rturk-2.10.3 spec/operations/get_assignment_spec.rb
rturk-2.10.2 spec/operations/get_assignment_spec.rb
rturk-2.10.1 spec/operations/get_assignment_spec.rb
rturk-2.10.0 spec/operations/get_assignment_spec.rb
rturk-2.9.0 spec/operations/get_assignment_spec.rb
rturk-2.8.0 spec/operations/get_assignment_spec.rb