Sha256: f8aae8feb51743ac57db5081bfdcdc425e6045c580ba20af8d331d2ac0b81db7
Contents?: true
Size: 583 Bytes
Versions: 21
Compression:
Stored size: 583 Bytes
Contents
require 'test/unit' require 'rscm/tempdir' require 'rscm/difftool' require 'rscm/path_converter' module RSCM class DifftoolTest < Test::Unit::TestCase include Difftool def test_diffing_fails_with_diff_when_different assert_raises(Test::Unit::AssertionFailedError) { assert_equal_with_diff("This is a\nmessage with\nsome text", "This is a\nmessage without\nsome text") } end def test_diffing_passes_with_diff_when_equal assert_equal_with_diff("This is a\nmessage with\nsome text", "This is a\nmessage with\nsome text") end end end
Version data entries
21 entries across 21 versions & 1 rubygems