1
0
mirror of https://github.com/gryf/tagbar.git synced 2026-02-19 07:55:54 +01:00

Add tests to repository

This commit is contained in:
Jan Larres
2013-03-28 00:16:03 +13:00
parent b6f47e4020
commit db9404ca1a
128 changed files with 54624 additions and 0 deletions

10
tests/ruby/cache_key.rb Normal file
View File

@@ -0,0 +1,10 @@
class Class2
def self.fun1()
value=if foo
bar
end
end
def self.fun2()
end
end

13
tests/ruby/singleton.rb Normal file
View File

@@ -0,0 +1,13 @@
class Foo
def a
end
def b
end
def Foo.c(item)
end
def self.d
end
end

10
tests/ruby/testcase.rb Normal file
View File

@@ -0,0 +1,10 @@
class Class1
def fun1()
foo = if bar
baz
end
end
def fun2()
end
end