Advertisement
Guest User

Untitled

a guest
Apr 1st, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. $ find spec/{unit,integration} -type f -name "*_spec.rb" | while read spec; do echo $spec; bundle exec rspec $spec; done
  2. ...
  3. rspec ./spec/unit/application/kick_spec.rb:237 # Puppet::Application::Kick when running the main command should create as much childs as --parallel
  4. rspec ./spec/unit/provider/package/opkg_spec.rb:49 # Puppet::Type::Package::ProviderOpkg when installing should call opkg install
  5. rspec ./spec/unit/settings/autosign_setting_spec.rb:74 # Puppet::Settings::AutosignSetting converting the setting to a resource converts the file path to a file resource
  6. rspec ./spec/integration/parser/ruby_manifest_spec.rb:33 # Pure ruby manifests should allow classes
  7. rspec ./spec/integration/parser/ruby_manifest_spec.rb:41 # Pure ruby manifests should allow defines
  8. rspec ./spec/integration/parser/ruby_manifest_spec.rb:48 # Pure ruby manifests should allow node declarations
  9. rspec ./spec/integration/parser/ruby_manifest_spec.rb:56 # Pure ruby manifests should allow access to the environment
  10. rspec ./spec/integration/parser/ruby_manifest_spec.rb:65 # Pure ruby manifests should allow creation of resources of built-in types
  11. rspec ./spec/integration/parser/ruby_manifest_spec.rb:79 # Pure ruby manifests should allow calling user-defined functions
  12. rspec ./spec/integration/parser/ruby_manifest_spec.rb:88 # Pure ruby manifests should be properly cached for multiple compiles
  13. rspec ./spec/integration/parser/ruby_manifest_spec.rb:114 # Pure ruby manifests should be properly reloaded when stale
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement