spec/integration/default_spec.rb in itamae-1.9.12 vs spec/integration/default_spec.rb in itamae-1.9.13

- old
+ new

@@ -301,5 +301,23 @@ end describe file('/tmp/subscribed_from_parent') do it { should be_file } end + +describe file('/tmp/empty_file1') do + it { should exist } + it { should be_file } + its(:content) { should eq "" } +end + +describe file('/tmp/empty_file2') do + it { should exist } + it { should be_file } + its(:content) { should eq "" } +end + +describe file('/tmp/empty_file3') do + it { should exist } + it { should be_file } + its(:content) { should eq "" } +end