Skip to content

Commit

Permalink
Merge pull request #654 from Insti/Acronym_Regenerate
Browse files Browse the repository at this point in the history
acronym: Update test cases.
  • Loading branch information
kotp authored May 31, 2017
2 parents 9a6de3a + e9d7269 commit 6a6ba92
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion exercises/acronym/.meta/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3
4
2 changes: 1 addition & 1 deletion exercises/acronym/.meta/solutions/acronym.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module BookKeeping
VERSION = 3
VERSION = 4
end

class Acronym
Expand Down
9 changes: 2 additions & 7 deletions exercises/acronym/acronym_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'minitest/autorun'
require_relative 'acronym'

# Common test data version: 1.0.0 dcfe476
# Common test data version: 1.1.0 cae7ae1
class AcronymTest < Minitest::Test
def test_basic
# skip
Expand All @@ -14,11 +14,6 @@ def test_lowercase_words
assert_equal "ROR", Acronym.abbreviate('Ruby on Rails')
end

def test_camelcase
skip
assert_equal "HTML", Acronym.abbreviate('HyperText Markup Language')
end

def test_punctuation
skip
assert_equal "FIFO", Acronym.abbreviate('First In, First Out')
Expand Down Expand Up @@ -58,6 +53,6 @@ def test_hyphenated

def test_bookkeeping
skip
assert_equal 3, BookKeeping::VERSION
assert_equal 4, BookKeeping::VERSION
end
end

0 comments on commit 6a6ba92

Please sign in to comment.