Sha256: 58c2e50e898d6a472b072fa35ef6ccc23b5b7c7e40bb8dd3d49203db165cabe6

Contents?: true

Size: 1.06 KB

Versions: 4

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

4 entries across 4 versions & 1 rubygems

Version Path
ohm-contrib-0.0.16 test/test_ohm_contrib.rb
ohm-contrib-0.0.15 test/test_ohm_contrib.rb
ohm-contrib-0.0.14 test/test_ohm_contrib.rb
ohm-contrib-0.0.13 test/test_ohm_contrib.rb