Sha256: 4e63b6ca3a69386b2bac41c1debcafee6b88e9b08e5505aa59dcba0dbd022769
Contents?: true
Size: 303 Bytes
Versions: 1
Compression:
Stored size: 303 Bytes
Contents
# frozen_string_literal: true require "test_helper" class AdditionTest < Minitest::Test def setup @addition = GitDiff::Line::Addition.new("+ addition") end def test_addition_is_true assert @addition.addition? end def test_deletion_is_false refute @addition.deletion? end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
git_diff-0.4.3 | test/line/addition_test.rb |