Missing an end in an example

This commit is contained in:
Tim Sharpe 2011-11-01 21:05:41 +13:00
parent 81257c7f4e
commit bb9f2338fd
1 changed files with 1 additions and 0 deletions

View File

@ -260,4 +260,5 @@ Or by using the existing `raises_error` RSpec matcher
it 'something' do
expect { subject.call('a', 'b') }.should raise_error(Puppet::ParseError)
expect { subject.call('a') }.should_not raise_error(Puppet::ParseError)
end
```