Sha256: 95c83f7afdd2936f85588cda8bbeb3e6b5c0ed0803d9476399ff7b17e4e52209
Contents?: true
Size: 1.79 KB
Versions: 2
Compression:
Stored size: 1.79 KB
Contents
# Copyright (C) 2015-2022 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, or (at your option) any later version. # # 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA class TestAssertions < ActiveSupport::TestCase test "assert_not" do assert_not(false) end test "assert_difference" do x = 1 assert_difference("x", 1) do x += 1 end end test "assert_difference: raise" do x = 1 if ActiveSupport.version < Gem::Version.new("6") assert_raise(RuntimeError.new("Unexpected")) do assert_difference("x", 1) do raise "Unexpected" end end else assert_raise(Test::Unit::AssertionFailedError) do assert_difference("x", 1) do raise "Unexpected" end end end end test "assert_no_difference" do x = 1 assert_no_difference("x") do end end test "assert_nothing_raised" do assert_raise(Test::Unit::AssertionFailedError) do assert_nothing_raised do raise "Unexpected" end end end test "message method" do delayed_message = message("test", "bernd") do "hans" end assert_equal("test.\nhansbernd", delayed_message.call) end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
test-unit-activesupport-1.1.1 | test/test_assertions.rb |
test-unit-activesupport-1.1.0 | test/test_assertions.rb |