Sha256: 0d4e0bfd6887b6fe84995843135c288ea5abbf2bc1ddb654aed60b03e777c64c

Contents?: true

Size: 1.33 KB

Versions: 14

Compression:

Stored size: 1.33 KB

Contents

# Copyright (C) 2009  Kouhei Sutou <kou@clear-code.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

class TestCallbacks < Test::Unit::TestCase
  include ActiveGroongaTestUtils

  def test_before_save
    callbacked_bookmark_class = Class.new(Bookmark) do
      class << self
        def model_name
          Bookmark.model_name
        end
      end

      set_callback :save, :before, :before_save

      def before_save
        @called = true
      end
    end
    bookmark = callbacked_bookmark_class.new
    bookmark.instance_variable_set("@called", false)
    assert_equal(false, bookmark.instance_variable_get("@called"))
    bookmark.save
    assert_equal(true, bookmark.instance_variable_get("@called"))
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
activegroonga-4.2.1 test/test-callbacks.rb
activegroonga-4.2.0 test/test-callbacks.rb
activegroonga-4.0.0 test/test-callbacks.rb
activegroonga-2.1.4 test/test-callbacks.rb
activegroonga-2.1.3 test/test-callbacks.rb
activegroonga-2.1.2 test/test-callbacks.rb
activegroonga-2.1.1 test/test-callbacks.rb
activegroonga-1.0.7 test/test-callbacks.rb
activegroonga-1.0.6 test/test-callbacks.rb
activegroonga-1.0.5 test/test-callbacks.rb
activegroonga-1.0.4 test/test-callbacks.rb
activegroonga-1.0.3 test/test-callbacks.rb
activegroonga-1.0.1 test/test-callbacks.rb
activegroonga-1.0.0 test/test-callbacks.rb