# frozen_string_literal: true require 'test_helper' module Vedeu module DSL describe Geometry do # describe '#geometry' do # context 'when the required block is not given' do # subject { instance.geometry } # it { proc { subject }.must_raise(Vedeu::Error::RequiresBlock) } # end # context 'when the block is given' do # subject { instance.geometry { } } # context 'when the name is not given' do # it 'uses the name of the model' do # # @todo Add more tests. # end # end # context 'when the name is given' do # # @todo Add more tests. # end # end # end end # Geometry end # DSL end # Vedeu