Sha256: 1485a0b93d82c7a0e98ea15fe4f5a02b7a3b90be4ceb914da14d61e1f5ef7fd0

Contents?: true

Size: 746 Bytes

Versions: 5

Compression:

Stored size: 746 Bytes

Contents

class Test::Unit::TestCase
  #
  # @example
  #   class TestBase64
  #     unsupported :test_urlsafe_encode64
  #     unsupported :test_strict_encode64
  #   end
  #
  def self.unsupported name, message = 'unsupported'
    define_method name do
      skip message
    end
  end

  #
  # @example
  #   class TestBase64
  #     bug :test_strict_decode64
  #   end
  #
  def self.bug name, message = 'BUG'
    define_method name do
      skip message
    end
  end
end

class TestBase64
  bug :test_strict_decode64
  bug :test_urlsafe_decode64_unpadded
end

class TestBenchmark
  # sleep is unsupported if not awaited
  unsupported :test_realtime_output
  bug :test_bugs_ruby_dev_40906_can_add_in_place_the_time_of_execution_of_the_block_given
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
opal-1.8.3.rc1 test/opal/unsupported_and_bugs.rb
opal-1.8.2 test/opal/unsupported_and_bugs.rb
opal-1.8.1 test/opal/unsupported_and_bugs.rb
opal-1.8.0 test/opal/unsupported_and_bugs.rb
opal-1.8.0.beta1 test/opal/unsupported_and_bugs.rb