diff --git a/spec/lib/base_spec.rb b/spec/lib/base_spec.rb index 1e6a9a4..9ed10b0 100644 --- a/spec/lib/base_spec.rb +++ b/spec/lib/base_spec.rb @@ -90,4 +90,10 @@ expect { sibling1_class.config.table.cellpadding = '0' }.not_to change { sibling2_class.config.table.cellpadding } end end -end \ No newline at end of file + + describe '.actions' do + it 'exists in class' do + expect(subject).to respond_to(:actions) + end + end +end