Initial Revision
[ohcount] / test / unit / ada_test.rb
1 require File.dirname(__FILE__) + '/../test_helper'
2
3 class AdaTest < LingoTest
4         def test_comment
5                 lb = [Ohcount::LanguageBreakdown.new("ada", "", "--comment", 0)]
6                 assert_equal lb, Ohcount::parse(" --comment", "ada")
7         end
8
9         def test_comprehensive
10                 verify_parse("ada1.ada")
11         end
12
13   def test_comprehensive_adb
14                 verify_parse("ada1.adb")
15         end
16 end