# frozen_string_literal: true # {{camel command.name}}: {{command.function_description}} RSpec.describe Funcky::{{camel command.category}}::{{camel command.name}} do let(:instance) { described_class.new } describe 'initialize' do subject { instance } it { is_expected.not_to be_nil } end describe '#parse' do subject { instance.parse(value) } let(:value) { nil } context 'safely handle nil' do it { is_expected.to eq('') } end end end