Sha256: f5c0cd3db6f41ab7d0ba6f051cbd30c04af302fb52d5f82ce51a4fd62e541490

Contents?: true

Size: 840 Bytes

Versions: 12

Compression:

Stored size: 840 Bytes

Contents

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

describe RTurk::RegisterHITType do

  before(:all) do
    aws = YAML.load(File.open(File.join(SPEC_ROOT, 'mturk.yml')))
    RTurk.setup(aws['AWSAccessKeyId'], aws['AWSAccessKey'], :sandbox => true)
    FakeWeb.clean_registry
    faker('register_hit_type', :operation => "RegisterHITType")

    @lambda = lambda do
      response = RTurk::RegisterHITType(:title => "Look at some pictures from 4Chan") do |hit|
        hit.description = "foo"
        hit.reward = 0.05
        hit.qualifications.add(:adult, true)
      end
    end

  end

  it "should return a CreateHITResponse after the request" do
    response = @lambda.call
    response.is_a?(RTurk::RegisterHITTypeResponse).should be_true
    response.type_id.should == 'KZ3GKTRXBWGYX8WXBW60'
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
rturk-2.3.6 spec/operations/register_hit_type_spec.rb
rturk-2.3.5 spec/operations/register_hit_type_spec.rb
rturk-2.3.4 spec/operations/register_hit_type_spec.rb
rturk-2.3.3 spec/operations/register_hit_type_spec.rb
rturk-2.3.2 spec/operations/register_hit_type_spec.rb
rturk-2.3.1 spec/operations/register_hit_type_spec.rb
rturk-2.3.0 spec/operations/register_hit_type_spec.rb
rturk-2.2.1 spec/operations/register_hit_type_spec.rb
rturk-2.2.0 spec/operations/register_hit_type_spec.rb
rturk-2.1.1 spec/operations/register_hit_type_spec.rb
rturk-2.1.0 spec/operations/register_hit_type_spec.rb
rturk-2.0.5 spec/operations/register_hit_type_spec.rb