Sha256: 9c941c5b3a893d98d5bd98e2e6fee66e588af8b67dd7f6b8a91335844c4b2cc2

Contents?: true

Size: 1.52 KB

Versions: 8

Compression:

Stored size: 1.52 KB

Contents

#!/usr/bin/env ruby
gem 'minitest', '>= 5.0.0'
require 'minitest/autorun'
require_relative 'acronym'

# Test data version:
# 5b5e807
# rubocop:disable Metrics/LineLength
class AcronymTest < Minitest::Test
  def test_basic
    assert_equal 'PNG', Acronym.abbreviate('Portable Network Graphics')
  end

  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

  def test_all_caps_words
    skip
    assert_equal 'PHP', Acronym.abbreviate('PHP: Hypertext Preprocessor')
  end

  def test_hyphenated
    skip
    assert_equal 'CMOS', Acronym.abbreviate('Complementary metal-oxide semiconductor')
  end

  # Problems in exercism evolve over time, as we find better ways to ask
  # questions.
  # The version number refers to the version of the problem you solved,
  # not your solution.
  #
  # Define a constant named VERSION inside of the top level BookKeeping
  # module, which may be placed near the end of your file.
  #
  # In your file, it will look like this:
  #
  # module BookKeeping
  #   VERSION = 1 # Where the version number matches the one in the test.
  # end
  #
  # 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 2, BookKeeping::VERSION
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
trackler-1.0.4.0 tracks/ruby/exercises/acronym/acronym_test.rb
trackler-1.0.3.0 tracks/ruby/exercises/acronym/acronym_test.rb
trackler-1.0.2.1 tracks/ruby/exercises/acronym/acronym_test.rb
trackler-1.0.2.0 tracks/ruby/exercises/acronym/acronym_test.rb
trackler-1.0.1.2 tracks/ruby/exercises/acronym/acronym_test.rb
trackler-1.0.1.1 tracks/ruby/exercises/acronym/acronym_test.rb
trackler-1.0.1.0 tracks/ruby/exercises/acronym/acronym_test.rb
trackler-1.0.0.1 tracks/ruby/exercises/acronym/acronym_test.rb