Sha256: 96c88b29a812fe2c74ed7b14145e19dcd49416117e51a1abe296baa389d72f1a

Contents?: true

Size: 1.04 KB

Versions: 16

Compression:

Stored size: 1.04 KB

Contents

##
# This code was generated by
# \ / _    _  _|   _  _
#  | (_)\/(_)(_|\/| |(/_  v1.0.0
#       /       /
# 
# frozen_string_literal: true

require 'spec_helper.rb'

describe 'Form' do
  it "can fetch" do
    @holodeck.mock(Twilio::Response.new(500, ''))

    expect {
      @client.authy.v1.forms('form-app-push').fetch()
    }.to raise_exception(Twilio::REST::TwilioError)

    values = {}
    expect(
    @holodeck.has_request?(Holodeck::Request.new(
        method: 'get',
        url: 'https://authy.twilio.com/v1/Forms/form-app-push',
    ))).to eq(true)
  end

  it "receives fetch responses" do
    @holodeck.mock(Twilio::Response.new(
        200,
      %q[
      {
          "form_type": "form-sms",
          "forms": {
              "create_factor": {},
              "verify_factor": {},
              "create_challenge": {}
          },
          "form_meta": {},
          "url": "https://authy.twilio.com/v1/Forms/form-sms"
      }
      ]
    ))

    actual = @client.authy.v1.forms('form-app-push').fetch()

    expect(actual).to_not eq(nil)
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
twilio-ruby-5.23.0 spec/integration/authy/v1/form_spec.rb
twilio-ruby-5.22.3 spec/integration/authy/v1/form_spec.rb
twilio-ruby-5.22.2 spec/integration/authy/v1/form_spec.rb
twilio-ruby-5.22.1 spec/integration/authy/v1/form_spec.rb
twilio-ruby-5.22.0 spec/integration/authy/v1/form_spec.rb
twilio-ruby-5.21.2 spec/integration/authy/v1/form_spec.rb
twilio-ruby-5.21.1 spec/integration/authy/v1/form_spec.rb
twilio-ruby-5.21.0 spec/integration/authy/v1/form_spec.rb
twilio-ruby-5.20.1 spec/integration/authy/v1/form_spec.rb
twilio-ruby-5.20.0 spec/integration/authy/v1/form_spec.rb
twilio-ruby-5.19.0 spec/integration/authy/v1/form_spec.rb
twilio-ruby-5.18.0 spec/integration/authy/v1/form_spec.rb
twilio-ruby-5.16.0 spec/integration/authy/v1/form_spec.rb
twilio-ruby-5.15.2 spec/integration/authy/v1/form_spec.rb
twilio-ruby-5.15.1 spec/integration/authy/v1/form_spec.rb
twilio-ruby-5.15.0 spec/integration/authy/v1/form_spec.rb