File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1919 it { is_expected . to all be_a SymEngine ::Symbol }
2020 its ( :count ) { is_expected . to eq 2 }
2121 it 'should have right names' do
22- expect ( symbols . map ( &:to_s ) ) . to eq %w( x y )
22+ expect ( symbols . map ( &:to_s ) ) . to eq %w[ x y ]
2323 end
2424 end
2525
3636 end
3737
3838 context 'with an array of Ruby Strings as an argument' do
39- let ( :args ) { [ %w( x y ) ] } # it would be one Array argument on *args
39+ let ( :args ) { [ %w[ x y ] ] } # it would be one Array argument on *args
4040
4141 it_behaves_like 'two symbols'
4242 end
4343
4444 context 'with a splatted argument' do
45- let ( :args ) { %w( x y ) } # it would be several separate strings on *args
45+ let ( :args ) { %w[ x y ] } # it would be several separate strings on *args
4646
4747 it_behaves_like 'two symbols'
4848 end
You can’t perform that action at this time.
0 commit comments