Sha256: db516fa0f95f322e20fd553d1e0e9e45dcf55b10ec507254510ee35e2848ad78

Contents?: true

Size: 557 Bytes

Versions: 221

Compression:

Stored size: 557 Bytes

Contents

require File.join(File.dirname(__FILE__), '../test_helper.rb')

class ActionsTest < Test::Unit::TestCase
  def setup
    @actions = ActiveScaffold::DataStructures::Actions.new(:a, 'b')
  end

  def test_initialization
    assert @actions.include?('a')
    assert @actions.include?(:b)
    assert !@actions.include?(:c)
  end

  def test_exclude
    assert @actions.include?('b')
    @actions.exclude :b
    assert !@actions.include?(:b)
  end

  def test_add
    assert !@actions.include?(:c)
    @actions.add 'c'
    assert @actions.include?('c')
  end
end

Version data entries

221 entries across 221 versions & 8 rubygems

Version Path
six-updater-web-0.24.11 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.24.10 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.24.9 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.24.8 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.24.7 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
active_scaffold-3.0.5 test/data_structures/actions_test.rb
active_scaffold-3.0.4 test/data_structures/actions_test.rb
active_scaffold-3.0.2 test/data_structures/actions_test.rb
active_scaffold-3.0.1 test/data_structures/actions_test.rb
active_scaffold-3.0.0 test/data_structures/actions_test.rb
six-updater-web-0.24.6 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.24.5 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
brisk-bills-0.7.0 vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.24.4 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.24.3 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.24.2 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.24.1 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.24.0 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.23.7 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.23.6 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb