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