Sha256: 908aa689f4d66fa0f377d67df644dd53d819b52d28dfa8f5cb8f1604bd2dddf3

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

$VERBOSE = true
require 'test/unit'

require '../netrc/lib/netrc'

class TestLex < Test::Unit::TestCase
  def test_lex_empty
    t = Netrc.lex([])
    assert_equal([], t)
  end

  def test_lex_comment
    t = Netrc.lex(["# foo\n"])
    assert_equal(["# foo\n"], t)
  end

  def test_lex_comment_after_space
    t = Netrc.lex([" # foo\n"])
    assert_equal([" # foo\n"], t)
  end

  def test_lex_comment_after_word
    t = Netrc.lex(["x # foo\n"])
    assert_equal(["x", " # foo\n"], t)
  end

  def test_lex_comment_with_hash
    t = Netrc.lex(["x # foo # bar\n"])
    assert_equal(["x", " # foo # bar\n"], t)
  end

  def test_lex_word
    t = Netrc.lex(["x"])
    assert_equal(["x"], t)
  end

  def test_lex_two_lines
    t = Netrc.lex(["x\ny\n"])
    assert_equal(["x", "\n", "y", "\n"], t)
  end

  def test_lex_word_and_comment
    t = Netrc.lex(["x\n", "# foo\n"])
    assert_equal(["x", "\n", "# foo\n"], t)
  end

  def test_lex_six_words
    t = Netrc.lex(["machine m login l password p\n"])
    e = ["machine", " ", "m", " ", "login", " ", "l", " ", "password", " ", "p", "\n"]
    assert_equal(e, t)
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
netrc-0.4 test/test_lex.rb