Sha256: 7d282ca6dc8c313c939265116510f9654d6fb3e27158b9f1bb497b9376d6910c

Contents?: true

Size: 241 Bytes

Versions: 2

Compression:

Stored size: 241 Bytes

Contents

require 'test/unit'
require 'kgio'

class TestAutopush < Test::Unit::TestCase
  def test_compatibility
    Kgio.autopush = true
    assert_equal true, Kgio.autopush?
    Kgio.autopush = false
    assert_equal false, Kgio.autopush?
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/kgio-2.10.0/test/test_autopush.rb
kgio-2.10.0 test/test_autopush.rb