Sha256: ab20f80eb7daebf4557aa50e28bc1cc974a8f7301783a90cd5eb81fe3f45ae0e

Contents?: true

Size: 1.19 KB

Versions: 4

Compression:

Stored size: 1.19 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

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ohm-contrib-0.0.27 test/test_ohm_contrib.rb
ohm-contrib-0.0.26 test/test_ohm_contrib.rb
ohm-contrib-0.0.25 test/test_ohm_contrib.rb
ohm-contrib-0.0.24 test/test_ohm_contrib.rb