Merge branch 'master' of git://labs.ohloh.net/git/ohcount
[ohcount] / test / unit / dylan_test.rb
1 require File.dirname(__FILE__) + '/../test_helper'
2
3 class Ohcount::DylanTest < Ohcount::Test
4
5         def test_comment
6                 lb = [Ohcount::LanguageBreakdown.new("dylan", "", "//comment", 0)]
7                 assert_equal lb, Ohcount::parse(" //comment", "dylan")
8         end
9
10         def test_comprehensive
11                 verify_parse("dylan1.dylan")
12         end
13 end