Sha256: 53876a192c49284b9d474a25421f16a78c1962241009f51c31ae7700cf71e0d8
Contents?: true
Size: 1.08 KB
Versions: 5
Compression:
Stored size: 1.08 KB
Contents
# -*- coding: utf-8 -*- # Copyright 2014, Ionuț Arțăriși <ionut@artarisi.eu> # # 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
Version data entries
5 entries across 5 versions & 1 rubygems