File: forward_args_node_spec.rb

package info (click to toggle)
ruby-rubocop-ast 0.3.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 892 kB
  • sloc: ruby: 10,886; makefile: 4
file content (22 lines) | stat: -rw-r--r-- 624 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

RSpec.describe RuboCop::AST::ForwardArgsNode do
  let(:args_node) { parse_source(source).ast.arguments }
  let(:source) { 'def foo(...); end' }

  context 'when using Ruby 2.7 or newer', :ruby27 do
    if RuboCop::AST::Builder.emit_forward_arg
      describe '#to_a' do
        it { expect(args_node.to_a).to contain_exactly(be_forward_arg_type) }
      end
    else
      describe '.new' do
        it { expect(args_node.is_a?(described_class)).to be(true) }
      end

      describe '#to_a' do
        it { expect(args_node.to_a).to contain_exactly(args_node) }
      end
    end
  end
end