Sha256: 02ff6f8631c3dd5d22057a9ab50bbf9a41d7e6f85c89efe87092302a27de295d

Contents?: true

Size: 463 Bytes

Versions: 3

Compression:

Stored size: 463 Bytes

Contents

require "#{::File.dirname(__FILE__)}/../../test_helper"

class BaseMonitorTest < Test::Unit::TestCase
  context "Available Monitors" do
    should "start out with available monitors" do
      assert Monitors.available.size > 5
      assert Monitors.available.include? Monitors::Load
    end
    
    should "have available_monitors" do
      class ExtraFoo < ::Monitors::BaseMonitor; end
      assert Monitors.available.include? ExtraFoo
    end
    
  end
  
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
auser-poolparty-1.2.11 test/poolparty/monitors/test_base_monitor.rb
auser-poolparty-1.2.12 test/poolparty/monitors/test_base_monitor.rb
fairchild-poolparty-1.2.12 test/poolparty/monitors/test_base_monitor.rb