opal/opal-rspec

View on GitHub
lib-opal/opal/rspec/fixes/rspec/core/example_status_persister.rb

Summary

Maintainability
A
0 mins
Test Coverage
module RSpec
  module Core
    # Persists example ids and their statuses so that we can filter
    # to just the ones that failed the last time they ran.
    # @private
    class ExampleStatusPersister
      def persist
      end
    end
  end
end