Sha256: 2ebd85946b961909071559716ba3c94931d68fe5bc8c37cc9ca5e9b571725f82
Contents?: true
Size: 936 Bytes
Versions: 7
Compression:
Stored size: 936 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' describe Symbol do describe '#camelize' do it { expect(:sym.camelize).to be_kind_of(Symbol) } context 'when called with upper option' do it 'camelize the symbol' do expect(:underscore_sym.camelize(:upper)).to eq(:UnderscoreSym) end end context 'when called with lower option' do it 'camelize the symbol without captalization' do expect(:underscore_sym.camelize(:lower)).to eq(:underscoreSym) end end context 'when called without option' do it 'camelize the symbol' do expect(:underscore_sym.camelize).to eq(:UnderscoreSym) end end end describe '#underscore' do it { expect(:symBol.underscore).to be_kind_of(Symbol) } context 'when called with upper option' do it 'underscore the symbol' do expect(:symBol.underscore).to eq(:sym_bol) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems