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.17.4 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.17.3 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.17.2 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.17.1 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.17.0 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.16.3 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.16.2 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.16.0 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.15.4 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.15.3 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.15.2 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.15.1 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.14.12 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.14.10 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
brisk-bills-0.6.0 vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.14.9 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.14.8 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.14.7 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.14.6 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb
six-updater-web-0.14.5 lib/six-updater-web/vendor/plugins/active_scaffold/test/data_structures/actions_test.rb