# -*- coding: utf-8 -*- # Copyright 2014, Ionuț Arțăriși # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require 'chef_attrdoc' describe 'This is the example from chef_attrdoc\'s README.md' do it 'has the a fixed output' do output = `ruby -Ilib bin/chef_attrdoc spec/fixtures/cookbook-example/ -s` expect(output).to eq(<<-OUTPUT) ## default.rb this is the attribute ```ruby default['some']['attribute'] = 'foo' ``` a longer block of code ```ruby case something when 'foo' default['some']['foo'] = 'baz' else default['some']['foo'] = 'qux' end ``` OUTPUT end end