Sha256: c7e02a0cc5a609a0470a2c73c80a16148884598bf89672d11e57a21179b86ef1

Contents?: true

Size: 582 Bytes

Versions: 1

Compression:

Stored size: 582 Bytes

Contents

# frozen_string_literal: true

require_relative '../../spec_helper' # Use the RSpec framework
require_relative '../../../lib/zenlish/wclasses/irregular_verb' # Load the class under test

module Zenlish
  module WClasses
    describe IrregularVerb do
      subject { IrregularVerb.new }

      context 'Initialization:' do
        it 'should be initialized without argument' do
          expect { IrregularVerb.new }.not_to raise_error
        end
      end # context

      context 'Provided services:' do
        
      end # context
    end # describe
  end # module
end # module

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
zenlish-0.2.01 spec/zenlish/wclasses/irregular_verb_spec.rb