Sha256: 5f50f0375fe17fa4b13e731d62ea699d61409adefaef69cf3d03b75f4a62910b

Contents?: true

Size: 1.06 KB

Versions: 7

Compression:

Stored size: 1.06 KB

Contents

require 'helper'

class TestOhmContrib < Test::Unit::TestCase
  test "autoloading of Boundaries" do
    assert_nothing_raised NameError, LoadError do
      Ohm::Boundaries
    end
  end

  test "autoloading of timestamping" do
    assert_nothing_raised NameError, LoadError do
      Ohm::Timestamping
    end
  end

  test "autoloading of ToHash" do
    assert_nothing_raised NameError, LoadError do
      Ohm::ToHash
    end
  end

  test "autoloading of WebValidations" do
    assert_nothing_raised NameError, LoadError do
      Ohm::WebValidations
    end
  end

  test "autoloading of NumberValidations" do
    assert_nothing_raised NameError, LoadError do
      Ohm::NumberValidations
    end
  end

  test "autoloading of Typecast" do
    assert_nothing_raised NameError, LoadError do
      Ohm::Typecast
    end
  end

  test "autoloading of Locking" do
    assert_nothing_raised NameError, LoadError do
      Ohm::Locking
    end
  end

  test "autoloading of ExtraValidations" do
    assert_nothing_raised NameError, LoadError do
      Ohm::ExtraValidations
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ohm-contrib-0.0.23 test/test_ohm_contrib.rb
ohm-contrib-0.0.22 test/test_ohm_contrib.rb
ohm-contrib-0.0.21 test/test_ohm_contrib.rb
ohm-contrib-0.0.20 test/test_ohm_contrib.rb
ohm-contrib-0.0.19 test/test_ohm_contrib.rb
ohm-contrib-0.0.18 test/test_ohm_contrib.rb
ohm-contrib-0.0.17 test/test_ohm_contrib.rb