Sha256: 1e74d6191c96c2dd218a7fb1dae77486ed76030a5c6d55f15ddd0f474d74a2ff
Contents?: true
Size: 1.86 KB
Versions: 121
Compression:
Stored size: 1.86 KB
Contents
require File.join(File.dirname(__FILE__), '../test_helper.rb') class ActionLinksTest < Test::Unit::TestCase def setup @links = ActiveScaffold::DataStructures::ActionLinks.new end def test_add_and_find # test adding with a shortcut @links.add 'foo/bar' assert_equal 1, @links.find_all{true}.size assert_equal 'foo/bar', @links.find_all{true}[0].action assert_equal 'foo/bar', @links['foo/bar'].action # test adding an ActionLink object directly @links.add ActiveScaffold::DataStructures::ActionLink.new('hello/world') assert_equal 2, @links.find_all{true}.size # test the << alias @links << 'a/b' assert_equal 3, @links.find_all{true}.size end def test_array_access @link1 = ActiveScaffold::DataStructures::ActionLink.new 'foo/bar' @link2 = ActiveScaffold::DataStructures::ActionLink.new 'hello_world' @links.add @link1 @links.add @link2 assert_equal @link1, @links[@link1.action] assert_equal @link2, @links[@link2.action] end def test_empty assert @links.empty? @links.add 'a' assert !@links.empty? end def test_cloning @links.add 'foo/bar' @links_copy = @links.clone assert !@links.equal?(@links_copy) assert !@links['foo/bar'].equal?(@links_copy['foo/bar']) end def test_each @links.add 'foo', :type => :collection @links.add 'bar', :type => :member @links.each :collection do |link| assert_equal 'foo', link.action end @links.each :member do |link| assert_equal 'bar', link.action end end def test_delete @links.add 'foo' @links.add 'bar' @links.delete :foo assert @links['foo'].nil? begin @links.delete :foo @links.delete 'foo' rescue assert false, "deleting from action links when item doesn't exist should not throw an error" end assert !@links['bar'].nil? end end
Version data entries
121 entries across 121 versions & 6 rubygems