~ubuntu-branches/ubuntu/oneiric/puppet/oneiric-security

« back to all changes in this revision

Viewing changes to vendor/gems/rspec/lib/spec/runner/heckle_runner_unsupported.rb

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Pollock
  • Date: 2009-04-13 17:12:47 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (3.1.3 squeeze) (1.2.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 18.
  • Revision ID: james.westby@ubuntu.com-20090413171247-61zlnwi5esw1lhtv
ImportĀ upstreamĀ versionĀ 0.24.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
module Spec
2
 
  module Runner
3
 
    # Dummy implementation for Windows that just fails (Heckle is not supported on Windows)
4
 
    class HeckleRunner
5
 
      def initialize(filter)
6
 
        raise "Heckle not supported on Windows"
7
 
      end
8
 
    end
9
 
  end
10
 
end