Sha256: 9bd7a1cd8c8d04f5f2f67a4052f8c5c0f5e96ee78b679cc62889912d86826b16

Contents?: true

Size: 301 Bytes

Versions: 1

Compression:

Stored size: 301 Bytes

Contents

module SeleniumTestCaseSpec
  attr_reader :base_selenium
  
  class MySeleniumTestCase < Polonium::TestCase
    def initialize(*args)
      @_result = Test::Unit::TestResult.new
      super('test_nothing')
    end

    def run(result)
      # do nothing
    end
    def test_nothing
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
polonium-0.1.0 spec/polonium/selenium_test_case_spec_helper.rb