Skip to content

Commit

Permalink
Update tests to reflect rename of skip?
Browse files Browse the repository at this point in the history
  • Loading branch information
meatball133 committed Jan 1, 2025
1 parent 9932b77 commit adc9d0c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions generatorv2/test/utils_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ def test_underscore_with_two_words
Generator.new("two-fer").underscore("two-fer")
end

def test_status
def test_skip
assert_equal "# skip",
Generator.new("acronym").status
Generator.new("acronym").skip?
end

def test_status_after_first
def test_skip_after_first
generator = Generator.new("acronym")
generator.status
generator.skip?
assert_equal "skip",
generator.status
generator.skip?
end
end

0 comments on commit adc9d0c

Please sign in to comment.