Sha256: 529e74ef3ae0fc2b9855d41cc597e795430a3b82d8940c1652333d35e3a35e02

Contents?: true

Size: 1.6 KB

Versions: 14

Compression:

Stored size: 1.6 KB

Contents

require 'spec_helper'

describe Fasterer::RescueCall do

  let(:file_path) { RSpec.root.join('support', 'rescue_call', file_name) }

  let(:rescue_element) do
    sexpd_file = Fasterer::Parser.parse(File.read(file_path))
    sexpd_file[2]
  end

  let(:rescue_call) do
    Fasterer::RescueCall.new(rescue_element)
  end

  describe 'plain rescue call' do

    let(:file_name) { 'plain_rescue.rb' }

    it 'should detect constant' do
      expect(rescue_call.rescue_classes).to eq([])
    end

  end

  describe 'rescue call with class' do

    let(:file_name) { 'rescue_with_class.rb' }

    it 'should detect integer' do
      expect(rescue_call.rescue_classes).to eq([:NoMethodError])
    end

  end

  describe 'rescue call with class and variable' do

    let(:file_name) { 'rescue_with_class_and_variable.rb' }

    it 'should detect string' do
      expect(rescue_call.rescue_classes).to eq([:NoMethodError])
    end

  end

  describe 'rescue call with variable' do

    let(:file_name) { 'rescue_with_variable.rb' }

    it 'should detect variable' do
      expect(rescue_call.rescue_classes).to eq([])
    end

  end

  describe 'rescue call with multiple classes' do

    let(:file_name) { 'rescue_with_multiple_classes.rb' }

    it 'should detect method' do
      expect(rescue_call.rescue_classes).to eq([:NoMethodError, :StandardError])
    end

  end

  describe 'rescue call with multiple classes and variable' do

    let(:file_name) { 'rescue_with_multiple_classes_and_variable.rb' }

    it 'should detect method' do
      expect(rescue_call.rescue_classes).to eq([:NoMethodError, :StandardError])
    end

  end

end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
fasterer-0.2.0 spec/lib/fasterer/rescue_call_spec.rb
fasterer-0.1.12 spec/lib/fasterer/rescue_call_spec.rb
fasterer-0.1.11 spec/lib/fasterer/rescue_call_spec.rb
fasterer-0.1.10 spec/lib/fasterer/rescue_call_spec.rb
fasterer-0.1.9 spec/lib/fasterer/rescue_call_spec.rb
fasterer-0.1.8 spec/lib/fasterer/rescue_call_spec.rb
fasterer-0.1.7 spec/lib/fasterer/rescue_call_spec.rb
fasterer-0.1.6 spec/lib/fasterer/rescue_call_spec.rb
fasterer-0.1.5 spec/lib/fasterer/rescue_call_spec.rb
fasterer-0.1.4 spec/lib/fasterer/rescue_call_spec.rb
fasterer-0.1.3 spec/lib/fasterer/rescue_call_spec.rb
fasterer-0.1.2 spec/lib/fasterer/rescue_call_spec.rb
fasterer-0.1.1 spec/lib/fasterer/rescue_call_spec.rb
fasterer-0.1.0 spec/lib/fasterer/rescue_call_spec.rb