tracks/ruby/exercises/acronym/acronym_test.rb in trackler-2.1.0.24 vs tracks/ruby/exercises/acronym/acronym_test.rb in trackler-2.1.0.25
- old
+ new
@@ -1,10 +1,10 @@
#!/usr/bin/env ruby
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
assert_equal "PNG", Acronym.abbreviate('Portable Network Graphics')
end
@@ -12,15 +12,10 @@
def test_lowercase_words
skip
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')
end
@@ -56,8 +51,8 @@
# If you are curious, read more about constants on RubyDoc:
# http://ruby-doc.org/docs/ruby-doc-bundle/UsersGuide/rg/constants.html
def test_bookkeeping
skip
- assert_equal 3, BookKeeping::VERSION
+ assert_equal 4, BookKeeping::VERSION
end
end